mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-25 08:58:06 +02:00
120 lines
2.2 KiB
C++
120 lines
2.2 KiB
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ToolDock.h
|
|
|
|
Dominic Mazzoni
|
|
Shane T. Mueller
|
|
Leland Lucius
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_TOOLDOCK__
|
|
#define __AUDACITY_TOOLDOCK__
|
|
|
|
#include <wx/defs.h>
|
|
#include <wx/panel.h>
|
|
|
|
#include "ToolBar.h"
|
|
|
|
class wxArrayPtrVoid;
|
|
class wxCommandEvent;
|
|
class wxEraseEvent;
|
|
class wxSizeEvent;
|
|
class wxPaintEvent;
|
|
class wxPoint;
|
|
class wxRect;
|
|
class wxWindow;
|
|
|
|
class GrabberEvent;
|
|
class ToolManager;
|
|
|
|
////////////////////////////////////////////////////////////
|
|
/// class ToolDock
|
|
////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
// ToolDock IDs
|
|
//
|
|
enum
|
|
{
|
|
NoDockID = 0,
|
|
TopDockID,
|
|
BotDockID,
|
|
DockCount = 2
|
|
};
|
|
|
|
class ToolDock:public wxPanel
|
|
{
|
|
|
|
public:
|
|
|
|
ToolDock( ToolManager *manager, wxWindow *parent, int dockid );
|
|
~ToolDock();
|
|
|
|
void LayoutToolBars();
|
|
|
|
void ShowHide( int type );
|
|
|
|
void Expose( int type, bool show );
|
|
|
|
int GetOrder( ToolBar *bar );
|
|
|
|
void Dock( ToolBar *bar, int ndx = -1 );
|
|
|
|
void Undock( ToolBar *bar );
|
|
|
|
int PositionBar( ToolBar *t, wxPoint & pos, wxRect & rect );
|
|
|
|
protected:
|
|
|
|
void OnErase( wxEraseEvent & event );
|
|
void OnSize( wxSizeEvent & event );
|
|
void OnPaint( wxPaintEvent & event );
|
|
void OnGrabber( GrabberEvent & event );
|
|
|
|
private:
|
|
|
|
void ReadConfig();
|
|
void WriteConfig();
|
|
|
|
int FlowLayout( int cnt,
|
|
wxRect boxen[],
|
|
wxRect ideal[],
|
|
int i,
|
|
int x,
|
|
int y,
|
|
int width,
|
|
int height );
|
|
|
|
void Updated();
|
|
|
|
int mTotalToolBarHeight;
|
|
wxWindow *mParent;
|
|
|
|
ToolManager *mManager;
|
|
|
|
wxArrayPtrVoid mDockedBars;
|
|
ToolBar *mBars[ ToolBarCount ];
|
|
|
|
public:
|
|
|
|
DECLARE_CLASS( ToolDock );
|
|
DECLARE_EVENT_TABLE();
|
|
};
|
|
|
|
#endif
|
|
|
|
// Indentation settings for Vim and Emacs and unique identifier for Arch, a
|
|
// version control system. Please do not modify past this point.
|
|
//
|
|
// Local Variables:
|
|
// c-basic-offset: 3
|
|
// indent-tabs-mode: nil
|
|
// End:
|
|
//
|
|
// vim: et sts=3 sw=3
|
|
// arch-tag: 5a2a21f8-6c9e-45a4-8718-c26cad5cfe65
|
|
|