gtk_superuser.h
上传用户:psq1974
上传日期:2007-01-06
资源大小:1195k
文件大小:1k
- /* Copyright (C) 1998, 1999 State University of New York at Stony Brook
- Author: Andrew V. Shuvalov ( andrew@ecsl.cs.sunysb.edu )
- Software license is located in file "COPYING"
- */
- #ifndef _gtk_superuser_h_
- #define _gtk_superuser_h_
- class SuLoginWindow : public Gtk_Window {
- /** session */
- Session &session;
- Gtk_Entry *entry;
- public:
- SuLoginWindow( Session &s );
- void callback_login();
- };
- class SuperuserPreferenciesWindow : public Gtk_Window {
- /** session */
- Session &session;
- Gtk_VBox *profList;
- ServerConfigItemVec props;
- vector< Gtk_Entry * > entries;
- static const int topWindowInitSizeX;
- static const int topWindowInitSizeY;
- public:
- SuperuserPreferenciesWindow( Session &s );
- void update_from_screen();
- void callback_save();
- void callback_cancel();
- };
- #endif // _gtk_superuser_h_