VR-Exchange 2.4 API Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Libraries
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
widgets
collectionEditor.h
Go to the documentation of this file.
1
/****************************************************************************
2
* Copyright (c) 2015 VT MAK
3
* All rights reserved.
4
****************************************************************************/
5
9
10
#pragma once
11
12
#include <
widgets/dllExport.h
>
13
#include <QtCore/QVariant>
14
#include <QtGui/QDialog>
15
16
class
QWidget
;
17
class
QGroupBox;
18
class
QLineEdit
;
19
class
QVBoxLayout;
20
class
QHBoxLayout;
21
class
QGridLayout;
22
class
QSpacerItem;
23
class
QPushButton;
24
class
QListWidget;
25
class
QListBoxItem;
26
27
namespace
MAKVrExchange
28
{
29
30
class
DT_DLL_WIDGETS
DtCollectionEditor
:
public
QDialog
31
{ Q_OBJECT;
32
public
:
33
35
DtCollectionEditor
(
QWidget
* parent = 0, Qt::WindowFlags f = 0 );
36
38
virtual
~
DtCollectionEditor
();
39
41
virtual
void
setCollection(
const
QStringList lst );
42
virtual
QStringList collection()
const
;
43
44
public
slots:
45
46
virtual
void
btnOk_Clicked();
47
virtual
void
btnCancel_Clicked();
48
virtual
void
btnAdd_Clicked();
49
virtual
void
btnRemove_Clicked();
50
51
protected
slots:
52
53
virtual
void
languageChange();
54
55
protected
:
56
58
QPushButton*
myButtonOk
;
59
61
QPushButton*
myButtonCancel
;
62
64
QPushButton*
myButtonAdd
;
65
67
QPushButton*
myButtonRemove
;
68
70
QListWidget*
myTextListBox
;
71
73
QGroupBox*
myDialogBox
;
74
76
QGroupBox*
myOkCancelBox
;
77
79
QGroupBox*
myAddRemoveBox
;
80
82
QStringList
myCollection
;
83
85
QLineEdit
*
myStringEditor
;
86
87
};
88
89
}
Document ID: Generated on Thu Jul 23 10:25:22 EDT 2015 from SVN revision 155065
Copyright © 2005-2014 VT MÄK. All Rights Reserved (
www.mak.com
)