equal
deleted
inserted
replaced
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!!!!! *******************/ |