MAK Data Logger API Documentation for HLA
Home
Modules
Namespaces
Classes
Files
Examples
Libraries
File List
File Members
libsrc
trafficAnalyzer
delimiterChooser.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2005 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
/*******************************************************************************
6
** $RCSfile: delimiterChooser.h,v $ $Revision: 119313 $ $State: Exp $
7
*******************************************************************************/
8
9
#pragma once
10
#include "
trafficAnalyzerPlugin.h
"
11
12
#include "ui_DelimiterChooser.h"
13
14
class
DtDelimiterViewer
;
15
16
#include <QtGui/QDialog>
17
18
19
// A single item for delimiter selection. Ideally you'd want thse
20
// widgets stacked to make a list of them.
21
class
DT_DLL_TRFCANLZR
DtDelimiterChooser
:
public
QWidget
22
{
23
friend
class
DtDelimiterViewer
;
24
25
Q_OBJECT
26
27
public
:
28
29
// default constructor
30
DtDelimiterChooser
(
QWidget
* parent = 0, Qt::WFlags fl = 0 );
31
32
// destructor
33
virtual
~
DtDelimiterChooser
();
34
35
signals:
36
37
void
selectedDelimiter(
const
QString& name,
const
QString& datatype);
38
void
enabledDelimiter(
const
QString& name,
const
QString& datatype,
bool
b);
39
40
protected
slots:
41
42
virtual
void
comboSignal(
const
QString &);
43
virtual
void
checkSignal(
bool
b);
44
45
protected
:
46
47
Ui::DtDelimiterChooser
myUi
;
48
49
private
:
//Class is not copyable
50
51
// Copy Constructor
52
DtDelimiterChooser
(
const
DtDelimiterChooser
& orig);
53
54
// Assignment Operator
55
DtDelimiterChooser
&
operator=
(
const
DtDelimiterChooser
& rhs);
56
};
Document ID: Generated on Thu Apr 10 18:53:01 EDT 2014 from SVN revision 138105
Copyright © 2005-2012 VT MÄK. All Rights Reserved (
www.mak.com
)