-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlogicviewpalette.cpp
More file actions
55 lines (40 loc) · 1.14 KB
/
logicviewpalette.cpp
File metadata and controls
55 lines (40 loc) · 1.14 KB
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
#include "logicviewpalette.h"
LogicViewPalette::LogicViewPalette()
{
}
void LogicViewPalette::setClassBackground(QColor color){
class_background = color;
}
void LogicViewPalette::setFunctionBackground(QColor color){
function_background = color;
}
void LogicViewPalette::setFunctionForeground(QColor color){
function_foreground = color;
}
void LogicViewPalette::setClassForeground(QColor color){
class_foreground = color;
}
void LogicViewPalette::setConstructorBackground(QColor color){
constructor_background = color;
}
void LogicViewPalette::setConstructorForeground(QColor color){
constructor_foreground = color;
}
QColor LogicViewPalette::getFunctionBackground(){
return function_background;
}
QColor LogicViewPalette::getClassBackground(){
return function_background;
}
QColor LogicViewPalette::getClassForeground(){
return class_foreground;
}
QColor LogicViewPalette::getFunctionForeground(){
return function_foreground;
}
QColor LogicViewPalette::getConstructorBackground(){
return constructor_background;
}
QColor LogicViewPalette::getConstructorForeground(){
return constructor_foreground;
}