mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-14 23:57:40 +02:00
// Indentation settings for Vim and Emacs etc. lines from all files, as Campbell's patch (except for other changes to Languages.cpp)
42 lines
850 B
C++
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
|