summaryrefslogtreecommitdiff
path: root/libslcompat/slcolorselector.cpp
blob: 18b408f258caaef0802d6b1b4e49a47af475bab3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include "slcolorselector.h"

SlColorTable::SlColorTable( QWidget *parent, const char *name,WFlags f,
                            int r, int c, const QRgb *a )
             :QTableView( parent, name, f )
{
}

SlColorTable::~SlColorTable()
{
}

QSize SlColorTable::sizeHint() const
{
}

void SlColorTable::paintCell(QPainter*,int,int)
{
}

void SlColorTable::mousePressEvent(QMouseEvent*)
{
}

void SlColorTable::mouseMoveEvent(QMouseEvent*)
{
}

void SlColorTable::mouseReleaseEvent(QMouseEvent*)
{
}

void SlColorTable::keyPressEvent(QKeyEvent*)
{
}


/*================================================================*/

SlColorSelector::SlColorSelector(bool isTransparentAccept, QWidget *parent, const char *name, WFlags f)
                :QVBox( parent, name, f )
{
}

SlColorSelector::~SlColorSelector()
{
}

/*================================================================*/

SlColorSelectorPopup::SlColorSelectorPopup(bool isTransparentAccept, QWidget *parent, const char *name, WFlags f)
                     :OColorPopupMenu( QColor(), parent, name )
{
}


SlColorSelectorPopup::~SlColorSelectorPopup()
{
}

void SlColorSelectorPopup::setCurrentColor(QRgb)
{
}