#include <iostream>
#include <sstream>
#include "sensordlg.h"
#include "common.h"
#include <FXInputDialog.h>
#include "deform.h"
Go to the source code of this file.
FXIMPLEMENT |
( |
SensorDialog |
, |
|
|
FXDialogBox |
, |
|
|
SensorDialogMap |
, |
|
|
ARRAYNUMBER(SensorDialogMap) |
|
|
) |
| |
Definition at line 18 of file sensordlg.cpp.
23 : FXDialogBox (a,
"Sensor Editor",DECOR_TITLE|DECOR_BORDER,0,0,400,0),
24 m_Sensors(sc), m_SList(
NULL), m_ImgWin(iw), m_PGeomMutex(
NULL)
26 FXHorizontalFrame* contents=
new FXHorizontalFrame(
27 this,LAYOUT_SIDE_TOP|LAYOUT_FILL_X|LAYOUT_FILL_Y,0,0,0,0, 0,0,0,0);
28 m_SList =
new FXListBox(contents,
this, ID_SENSSEL,
29 LISTBOX_NORMAL|LAYOUT_FILL_X);
30 m_SList->setNumVisible(5);
31 m_SList->setWidth(400);
32 new FXButton(contents,
"&Edit",
NULL,
this, ID_SENSEDIT);
33 new FXButton(contents,
"&Hide",
NULL,
this, ID_HIDE);