Esempio n. 1
0
 /**
  * Removes a #Window from the "advanced window list" (#advanced_windows).
  */
 void RemoveExpert(Window *window) {
   expert_windows.remove(window);
 }
Esempio n. 2
0
 /**
  * Add a #Window to the "destruct" list: the object will be deleted
  * by the destructor of this class.  This means that the caller
  * doesn't have to keep track of the specified Window, because this
  * WndForm is now responsible for freeing memory.
  */
 void AddDestruct(Window *window) {
   destruct_windows.push_front(window);
 }
Esempio n. 3
0
 /**
  * Adds a #Window to the "advanced window list" (#advanced_windows).
  */
 void AddExpert(Window *window) {
   expert_windows.push_back(window);
 }
Esempio n. 4
0
 /**
  * Adds a #Window to the "advanced window list" (#advanced_windows).
  */
 void AddAdvanced(Window *window) {
   advanced_windows.push_back(window);
 }