gtk_superuser.h
上传用户:psq1974
上传日期:2007-01-06
资源大小:1195k
文件大小:1k
源码类别:

mpeg/mp3

开发平台:

C/C++

  1. /* Copyright (C) 1998, 1999 State University of New York at Stony Brook
  2.    Author: Andrew V. Shuvalov ( andrew@ecsl.cs.sunysb.edu )
  3.    Software license is located in file "COPYING"
  4. */
  5. #ifndef _gtk_superuser_h_
  6. #define _gtk_superuser_h_
  7. class SuLoginWindow : public Gtk_Window {
  8.   /** session */
  9.   Session &session;
  10.   Gtk_Entry *entry;
  11. public:
  12.   SuLoginWindow( Session &s );
  13.   void callback_login();
  14. };
  15. class SuperuserPreferenciesWindow : public Gtk_Window {
  16.   /** session */
  17.   Session &session;
  18.   Gtk_VBox *profList;
  19.   ServerConfigItemVec props;
  20.   vector< Gtk_Entry * > entries;
  21.   static const int topWindowInitSizeX;
  22.   static const int topWindowInitSizeY;
  23. public:
  24.   SuperuserPreferenciesWindow( Session &s );
  25.   void update_from_screen();
  26.   void callback_save();
  27.   void callback_cancel();
  28. };
  29. #endif   //  _gtk_superuser_h_