Rename a lot of classes
* aboutDialog -> AboutDialog * bbEditor -> BBEditor * exportProjectDialog -> ExportProjectDialog * setupDialog -> SetupDialog * stringPairDrag -> StringPairDrag
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* AboutDialog.h - declaration of class aboutDialog
|
||||
* AboutDialog.h - declaration of class AboutDialog
|
||||
*
|
||||
* Copyright (c) 2004-2008 Tobias Doerffel <tobydox/at/users.sourceforge.net>
|
||||
*
|
||||
@@ -31,10 +31,10 @@
|
||||
#include "ui_about_dialog.h"
|
||||
|
||||
|
||||
class aboutDialog : public QDialog, public Ui::AboutDialog
|
||||
class AboutDialog : public QDialog, public Ui::AboutDialog
|
||||
{
|
||||
public:
|
||||
aboutDialog( void );
|
||||
AboutDialog( void );
|
||||
|
||||
} ;
|
||||
|
||||
|
||||
@@ -34,12 +34,12 @@ class ComboBox;
|
||||
class ToolButton;
|
||||
|
||||
|
||||
class bbEditor : public TrackContainerView
|
||||
class BBEditor : public TrackContainerView
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
bbEditor( BBTrackContainer * _tc );
|
||||
virtual ~bbEditor();
|
||||
BBEditor( BBTrackContainer * _tc );
|
||||
virtual ~BBEditor();
|
||||
|
||||
virtual inline bool fixedTCOs() const
|
||||
{
|
||||
|
||||
@@ -74,7 +74,7 @@ private:
|
||||
ComboBoxModel m_bbComboBoxModel;
|
||||
|
||||
|
||||
friend class bbEditor;
|
||||
friend class BBEditor;
|
||||
|
||||
} ;
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
#include "export.h"
|
||||
|
||||
class AutomationEditor;
|
||||
class bbEditor;
|
||||
class BBEditor;
|
||||
class BBTrackContainer;
|
||||
class DummyTrackContainer;
|
||||
class FxMixer;
|
||||
@@ -113,7 +113,7 @@ public:
|
||||
return s_songEditor;
|
||||
}
|
||||
|
||||
static bbEditor * getBBEditor()
|
||||
static BBEditor * getBBEditor()
|
||||
{
|
||||
return s_bbEditor;
|
||||
}
|
||||
@@ -189,7 +189,7 @@ private:
|
||||
static FxMixerView * s_fxMixerView;
|
||||
static SongEditor* s_songEditor;
|
||||
static AutomationEditor * s_automationEditor;
|
||||
static bbEditor * s_bbEditor;
|
||||
static BBEditor * s_bbEditor;
|
||||
static PianoRoll* s_pianoRoll;
|
||||
static ProjectNotes * s_projectNotes;
|
||||
static Ladspa2LMMS * s_ladspaManager;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* ExportProjectDialog.h - declaration of class exportProjectDialog which is
|
||||
* ExportProjectDialog.h - declaration of class ExportProjectDialog which is
|
||||
* responsible for exporting project
|
||||
*
|
||||
* Copyright (c) 2004-2012 Tobias Doerffel <tobydox/at/users.sourceforge.net>
|
||||
@@ -34,12 +34,12 @@
|
||||
#include "ProjectRenderer.h"
|
||||
|
||||
|
||||
class exportProjectDialog : public QDialog, public Ui::ExportProjectDialog
|
||||
class ExportProjectDialog : public QDialog, public Ui::ExportProjectDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
exportProjectDialog( const QString & _file_name, QWidget * _parent, bool multi_export );
|
||||
virtual ~exportProjectDialog();
|
||||
ExportProjectDialog( const QString & _file_name, QWidget * _parent, bool multi_export );
|
||||
virtual ~ExportProjectDialog();
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
@@ -138,7 +138,7 @@ private:
|
||||
int m_steps;
|
||||
|
||||
friend class PatternView;
|
||||
friend class bbEditor;
|
||||
friend class BBEditor;
|
||||
|
||||
|
||||
signals:
|
||||
|
||||
@@ -41,7 +41,7 @@ class QSlider;
|
||||
class TabBar;
|
||||
|
||||
|
||||
class setupDialog : public QDialog
|
||||
class SetupDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
@@ -54,8 +54,8 @@ public:
|
||||
MidiSettings
|
||||
} ;
|
||||
|
||||
setupDialog( ConfigTabs _tab_to_open = GeneralSettings );
|
||||
virtual ~setupDialog();
|
||||
SetupDialog( ConfigTabs _tab_to_open = GeneralSettings );
|
||||
virtual ~SetupDialog();
|
||||
|
||||
|
||||
protected slots:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* StringPairDrag.h - class stringPairDrag which provides general support
|
||||
* StringPairDrag.h - class StringPairDrag which provides general support
|
||||
* for drag'n'drop of string-pairs
|
||||
*
|
||||
* Copyright (c) 2005-2007 Tobias Doerffel <tobydox/at/users.sourceforge.net>
|
||||
@@ -36,12 +36,12 @@
|
||||
class QPixmap;
|
||||
|
||||
|
||||
class EXPORT stringPairDrag : public QDrag
|
||||
class EXPORT StringPairDrag : public QDrag
|
||||
{
|
||||
public:
|
||||
stringPairDrag( const QString & _key, const QString & _value,
|
||||
StringPairDrag( const QString & _key, const QString & _value,
|
||||
const QPixmap & _icon, QWidget * _w );
|
||||
~stringPairDrag();
|
||||
~StringPairDrag();
|
||||
|
||||
static bool processDragEnterEvent( QDragEnterEvent * _dee,
|
||||
const QString & _allowed_keys );
|
||||
|
||||
Reference in New Issue
Block a user