Rename automatable_button to AutomatableButton
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* automatable_button.h - class automatableButton, the base for all buttons
|
||||
* AutomatableButton.h - class automatableButton, the base for all buttons
|
||||
*
|
||||
* Copyright (c) 2006-2008 Tobias Doerffel <tobydox/at/users.sourceforge.net>
|
||||
*
|
||||
@@ -34,13 +34,13 @@
|
||||
class automatableButtonGroup;
|
||||
|
||||
|
||||
class EXPORT automatableButton : public QPushButton, public BoolModelView
|
||||
class EXPORT AutomatableButton : public QPushButton, public BoolModelView
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
automatableButton( QWidget * _parent, const QString & _name
|
||||
AutomatableButton( QWidget * _parent, const QString & _name
|
||||
= QString::null );
|
||||
virtual ~automatableButton();
|
||||
virtual ~AutomatableButton();
|
||||
|
||||
inline void setCheckable( bool _on )
|
||||
{
|
||||
@@ -87,10 +87,10 @@ public:
|
||||
= QString::null );
|
||||
virtual ~automatableButtonGroup();
|
||||
|
||||
void addButton( automatableButton * _btn );
|
||||
void removeButton( automatableButton * _btn );
|
||||
void addButton( AutomatableButton * _btn );
|
||||
void removeButton( AutomatableButton * _btn );
|
||||
|
||||
void activateButton( automatableButton * _btn );
|
||||
void activateButton( AutomatableButton * _btn );
|
||||
|
||||
virtual void modelChanged();
|
||||
|
||||
@@ -100,7 +100,7 @@ private slots:
|
||||
|
||||
|
||||
private:
|
||||
QList<automatableButton *> m_buttons;
|
||||
QList<AutomatableButton *> m_buttons;
|
||||
|
||||
} ;
|
||||
|
||||
@@ -26,13 +26,13 @@
|
||||
#ifndef LED_CHECKBOX_H
|
||||
#define LED_CHECKBOX_H
|
||||
|
||||
#include "automatable_button.h"
|
||||
#include "AutomatableButton.h"
|
||||
|
||||
|
||||
class QPixmap;
|
||||
|
||||
|
||||
class EXPORT ledCheckBox : public automatableButton
|
||||
class EXPORT ledCheckBox : public AutomatableButton
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
|
||||
@@ -28,10 +28,10 @@
|
||||
|
||||
#include <QPixmap>
|
||||
|
||||
#include "automatable_button.h"
|
||||
#include "AutomatableButton.h"
|
||||
|
||||
|
||||
class EXPORT pixmapButton : public automatableButton
|
||||
class EXPORT pixmapButton : public AutomatableButton
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user