VR-Exchange 2.2 API Documentation
colorPicker.h
Go to the documentation of this file.
1 /*********************************************************************
2  ** Copyright (c) 1992-2010 VT MAK
3 ** All rights reserved.
4 *********************************************************************/
5 
9 
10 #pragma once
11 
12 #include <QtCore/QVariant>
13 #include <QtGui/QWidget>
14 
15 class QFrame;
16 class QLabel;
17 class QToolButton;
18 class QHBoxLayout;
19 
20 namespace MAKVrExchange
21 {
22 
25  class DtColorPicker : public QWidget
26  { Q_OBJECT;
27  public:
28 
29  DtColorPicker( QWidget* parent = 0, Qt::WindowFlags fl = 0 );
30 
31  protected:
32 
33  QFrame* myFrame;
35  QToolButton* myBtnSelect;
36  QHBoxLayout* controlLayout;
37  QHBoxLayout* myFrameLayout;
38 
39  signals:
40 
41  void colorSelected( const QColor& color );
42 
43  protected slots:
44 
45  virtual void languageChange();
46  virtual void pickColor();
47 
48  };
49 
50 }

Document ID: Generated on Mon Apr 15 17:15:50 EDT 2013 from SVN revision 126154
Copyright © 2005-2012 VT MÄK. All Rights Reserved (www.mak.com)