00001 #ifndef BCRELOCATABLEWIDGET_H 00002 #define BCRELOCATABLEWIDGET_H 00003 00004 class BC_RelocatableWidget 00005 { 00006 public: 00007 BC_RelocatableWidget(); 00008 virtual int reposition_widget(int x, int y, int w = -1, int h = -1) { return -1; }; 00009 virtual int get_w() {return -1; }; 00010 virtual int get_h() {return -1; }; 00011 }; 00012 00013 #endif
1.4.4