1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-14 23:57:40 +02:00
audacity/src/prefs/MousePrefs.h
martynshaw99 4ce2643d5f Remove the
// Indentation settings for Vim and Emacs
etc. lines from all files, as Campbell's patch (except for other changes to Languages.cpp)
2013-09-24 00:14:37 +00:00

42 lines
850 B
C++

/**********************************************************************
Audacity: A Digital Audio Editor
MousePrefs.h
**********************************************************************/
#ifndef __AUDACITY_MOUSE_PREFS__
#define __AUDACITY_MOUSE_PREFS__
#include <wx/defs.h>
#include <wx/listctrl.h>
#include <wx/string.h>
#include <wx/window.h>
#include "../ShuttleGui.h"
#include "PrefsPanel.h"
class MousePrefs:public PrefsPanel
{
public:
MousePrefs(wxWindow * parent);
~MousePrefs();
virtual bool Apply();
private:
void Populate();
void PopulateOrExchange(ShuttleGui & S);
void CreateList();
void AddItem(wxString const & buttons,
wxString const & tool,
wxString const & action,
wxString const & comment = wxEmptyString);
wxListCtrl * mList;
};
#endif