MAK Data Logger API Documentation for DIS
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
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: 174999 $ $State: Exp $
7
*******************************************************************************/
8
9
#pragma once
10
#include <
trafficAnalyzer/trafficAnalyzerPlugin.h
>
11
12
#include "ui_DelimiterChooser.h"
13
14
class
DtDelimiterViewer
;
15
16
#include <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::WindowFlags 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 Wed Jun 5 18:45:18 EDT 2019 from SVN revision 198968
Copyright © 2019 VT MAK. All Rights Reserved (
www.mak.com
)