#include <kdeFrontEnd.h>
Inherits FrontEnd.
Public Methods | |
KDEFrontEnd (int argc, char** argv) | |
~KDEFrontEnd () | |
void | init () |
Initialization function. More... | |
void | update () |
Update function. More... | |
void | displayUsers (int users) |
Display logged in Users. More... | |
void | displayMatrices (int matrices) |
Display open matrices (OBSOLETE!!). More... | |
void | displayDebugMessage (const char*) |
Display a debug message. More... | |
Private Attributes | |
int | argc |
char** | argv |
Definition at line 7 of file kdeFrontEnd.h.
00007 { 00008 public: 00009 KDEFrontEnd (int argc, char** argv); 00010 ~KDEFrontEnd (); 00011 00012 void init (); 00013 00014 void update (); 00015 00016 void displayUsers (int users); // amount of users logged in 00017 void displayMatrices (int matrices); // amount of active matrices 00018 00019 void displayDebugMessage (const char*); 00020 00021 private: 00022 int argc; 00023 char** argv; 00024 }
|
Definition at line 11 of file kdeFrontEnd.cpp.
00011 { 00012 this->argc = argc; 00013 this->argv = argv; 00014 }
|
Definition at line 27 of file kdeFrontEnd.cpp.
00027 { 00028 printf ("KDEFrontEnd Destructor\n"); 00029 }
|
|
Display open matrices (OBSOLETE!!).
matrices | number of open matrices |
Reimplemented from FrontEnd.
Definition at line 37 of file kdeFrontEnd.cpp.
00037 { 00038 }
|
Display logged in Users.
users | number of users to be displayed |
Reimplemented from FrontEnd.
Definition at line 34 of file kdeFrontEnd.cpp.
00034 { 00035 }
|
Initialization function.
Reimplemented from FrontEnd.
Definition at line 16 of file kdeFrontEnd.cpp.
00016 { 00017 KApplication* frontApp; 00018 frontApp = new KApplication (argc, argv); 00019 00020 printf ("KDEFrontEnd Constructor: %p\n", frontApp); 00021 00022 mainWidget.show (); 00023 frontApp->setMainWidget (&mainWidget); 00024 frontApp->exec (); 00025 }
|
Update function.
Reimplemented from FrontEnd.
Definition at line 31 of file kdeFrontEnd.cpp.
00031 { 00032 }
|
Definition at line 22 of file kdeFrontEnd.h.
|
Definition at line 23 of file kdeFrontEnd.h.