2018-12-17 Fred Gleason <fredg@paravelsystems.com>

* Renamed the RD_RLM2_CLIENT_TCP_PORT define to RD_PAD_CLIENT_TCP_PORT.
	* Renamed the  RD_RLM_SOURCE_UNIX_ADDRESS define to
	 RD_PAD_SOURCE_UNIX_ADDRESS.
	* Added a RD_PYPAD_SCRIPT_DIR define.
	* Added an 'RDNotification::PypadType' value to the
	'RDNotification::Type' enumeration.
	* Added 'PypadOwner=' and 'PypadGroup=' directives to the
	'[Identity]' section of rd.conf(5).
	* Added an rdpadengined(8) service.
	* Added a 'PYPAD_INSTANCES.IS_RUNNING' field to the database.
	* Added a 'PYPAD_INSTANCES.EXIT_CODE' field to the database.
	* Added a 'PYPAD_INSTANCES.ERROR_TEXT' field to the database.
	* Incremented the database version to 304.
This commit is contained in:
Fred Gleason
2018-12-17 14:16:30 -05:00
parent 7a04111228
commit bc42ff435c
62 changed files with 1735 additions and 90 deletions

View File

@@ -22,7 +22,9 @@
#define LIST_PYPADS_H
#include <qdialog.h>
#include <qpixmap.h>
#include <qpushbutton.h>
#include <qtimer.h>
#include <rdlistview.h>
#include <rdlistviewitem.h>
@@ -40,8 +42,10 @@ class ListPypads : public QDialog
void addData();
void editData();
void deleteData();
void errorData();
void doubleClickedData(Q3ListViewItem *item,const QPoint &pt,int col);
void closeData();
void updateData();
protected:
void resizeEvent(QResizeEvent *e);
@@ -53,8 +57,12 @@ class ListPypads : public QDialog
QPushButton *list_add_button;
QPushButton *list_edit_button;
QPushButton *list_delete_button;
QPushButton *list_error_button;
QPushButton *list_close_button;
QPixmap *list_greenball_pixmap;
QPixmap *list_redball_pixmap;
RDStation *list_station;
QTimer *list_update_timer;
};