Restructuring directory layout. Move towards "Modern CMake" usage.

This commit is contained in:
Jim Evins
2017-11-23 22:15:24 -05:00
parent 8bec3594ec
commit b8ee5e1f73
198 changed files with 4509 additions and 5324 deletions
+6 -5
View File
@@ -22,9 +22,10 @@
#define ColorButton_h
#include "ColorNode.h"
#include "ColorPaletteDialog.h"
#include "model/ColorNode.h"
#include <QPushButton>
@@ -58,10 +59,10 @@ namespace glabels
/////////////////////////////////
public:
void init( const QString& defaultLabel, const QColor& defaultColor, const QColor& color );
void setColorNode( ColorNode colorNode );
void setColorNode( model::ColorNode colorNode );
void setColor( QColor color );
void setToDefault();
ColorNode colorNode();
model::ColorNode colorNode();
void setKeys( const QList<QString> keyList );
void clearKeys();
@@ -73,7 +74,7 @@ namespace glabels
void onButtonToggled( bool checked );
void onPaletteDialogAccepted();
void onPaletteDialogRejected();
void onPaletteDialogChanged( ColorNode colorNode, bool isDefault );
void onPaletteDialogChanged( model::ColorNode colorNode, bool isDefault );
/////////////////////////////////
@@ -88,7 +89,7 @@ namespace glabels
private:
QColor mDefaultColor;
bool mIsDefault;
ColorNode mColorNode;
model::ColorNode mColorNode;
ColorPaletteDialog* mDialog;
};