Source: /app/hbasic/hbasic/packages/hbasic_radmin/log_display.h
|
|
|
|
#ifndef LOG_DISPLAY_H
#define LOG_DISPLAY_H
class QListView;
class QToolBar;
#include
#include
#include
/* ------------------------------------------------------------ */
class CLogDisplay: public QMainWindow
{
Q_OBJECT
public:
CLogDisplay( QWidget *parent );
void host_connect( char *host_name );
private:
void readLogLines( void );
void readLogDesc( void );
short findText( char *start_text, char *end_text, char *find_line );
int checkLogInfo( char *search_in, int *entry_priority );
void parseLogLine( char *buffer );
char *check_log_desc;
int log_level;
QListView *lv_log;
QToolBar *tb_loglevel;
private slots:
void slotShowAll( void );
void slotShowLvl1( void );
void slotShowLvl2( void );
void slotShowLvl3( void );
void slotShowLvl4( void );
};
#endif
Generated by: root on linux on Sun Jul 13 18:06:35 2003, using kdoc 2.0a54. |