src/window_gui.h
branchnoai
changeset 10715 6bdf79ffb022
parent 10645 8cbdb511a674
child 10776 07203fc29812
equal deleted inserted replaced
10713:c5c9dc32c052 10715:6bdf79ffb022
   424  * Data structure for a window opened from a toolbar
   424  * Data structure for a window opened from a toolbar
   425  */
   425  */
   426 class PickerWindowBase : public Window {
   426 class PickerWindowBase : public Window {
   427 
   427 
   428 public:
   428 public:
   429 	PickerWindowBase(const WindowDesc *desc) : Window(desc) {}; // nothing special yet, just propagation
   429 	PickerWindowBase(const WindowDesc *desc, Window *parent) : Window(desc)
       
   430 	{
       
   431 		this->parent = parent;
       
   432 	};
   430 
   433 
   431 	virtual ~PickerWindowBase();
   434 	virtual ~PickerWindowBase();
   432 };
   435 };
   433 
   436 
   434 /****************** THESE ARE NOT WIDGET TYPES!!!!! *******************/
   437 /****************** THESE ARE NOT WIDGET TYPES!!!!! *******************/