@RemoveProjWin.h 664 B

1234567891011121314151617181920
  1. /******************************************************************************/
  2. /******************************************************************************/
  3. class RemoveProjWin : ClosableWindow
  4. {
  5. Text t_name;
  6. Button ok;
  7. UID proj_id;
  8. static void OK(RemoveProjWin &rpw);
  9. void activate(Projects::Elm &proj);
  10. void create();
  11. public:
  12. RemoveProjWin();
  13. };
  14. /******************************************************************************/
  15. /******************************************************************************/
  16. extern RemoveProjWin RemoveProj;
  17. /******************************************************************************/