VR-Exchange 2.1 API Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Libraries
File List
File Members
include
widgets
colorPicker.h
Go to the documentation of this file.
1
/*********************************************************************
2
** Copyright (c) 1992-2010 VT MAK
3
** All rights reserved.
4
*********************************************************************/
5
6
7
#ifndef colorPicker_H_
8
#define colorPicker_H_
9
12
13
//#include <namespace.h>
14
15
#include <QtCore/QVariant>
16
#include <QtGui/QWidget>
17
18
class
QFrame;
19
class
QLabel
;
20
class
QToolButton;
21
class
QHBoxLayout;
22
23
//namespace MAKVrExchange
24
//{
26
class
DtColorPicker
:
public
QWidget
27
{
28
Q_OBJECT
29
30
public
:
31
DtColorPicker
(
QWidget
* parent = 0, Qt::WindowFlags fl = 0 );
32
33
protected
:
34
QFrame*
myFrame
;
35
QLabel
*
myColorArea
;
36
QToolButton*
myBtnSelect
;
37
QHBoxLayout*
controlLayout
;
38
QHBoxLayout*
myFrameLayout
;
39
40
signals:
41
virtual
void
colorSelected
(
const
QColor& color);
42
43
protected
slots:
44
virtual
void
languageChange
();
45
virtual
void
pickColor
();
46
};
47
//};
48
49
#endif
50
Document ID: Generated on Tue Aug 7 22:07:13 EDT 2012 from SVN revision 117874
Copyright © 2005-2012 VT MÄK Inc. All Rights Reserved (
www.mak.com
)