Source: /app/hbasic/hbasic/packages/hbasic_radmin/startup_services.h
|
|
|
|
#ifndef STARTUP_SERVICE_H
#define STARTUP_SERVICE_H
class QWidget;
class QListView;
class QListViewItem;
class QToolBar;
class QString;
class QPushButton;
class QLineEdit;
#include
#include
#include
class CStartupServices: public QMainWindow
{
Q_OBJECT
public:
CStartupServices( QWidget *parent );
private:
short runlevel;
QString *remote_host;
char *service_names;
char *used_services;
QListView *lv_service;
QListViewItem *last_selected_entry;
QToolBar *tb_service;
void setServiceName( char *service_name, QListViewItem *lv_item );
char *findUsedService( char *service_name );
void createServiceList( void );
private slots:
void slotAddBoot( void );
void slotExecShutd( void );
void slotRightButtonPressed( QListViewItem *sel_item, const QPoint &pos, int num);
void slotStartService( void );
void slotRestartService( void );
void slotStopService( void );
public slots:
void host_connect( QString *hostname );
};
#endif
Generated by: root on linux on Sun Jul 13 18:06:35 2003, using kdoc 2.0a54. |