~ubuntu-branches/ubuntu/warty/synaptic/warty

« back to all changes in this revision

Viewing changes to wings/rwconfigwindow.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2002-04-04 12:23:30 UTC
  • Revision ID: james.westby@ubuntu.com-20020404122330-il87fkpjajirckb2
Tags: upstream-0.16
ImportĀ upstreamĀ versionĀ 0.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
 
 
3
 
 
4
#include "rwwindow.h"
 
5
 
 
6
 
 
7
class RWConfigWindow : public RWWindow {
 
8
   
 
9
   WMButton *_optionB[5];
 
10
   
 
11
   WMButton *_cacheB[3];
 
12
   
 
13
   WMTextField *_pathT;
 
14
   WMTextField *_sizeT;
 
15
   
 
16
   static void saveAction(WMWidget *self, void *data);
 
17
   
 
18
public:
 
19
   RWConfigWindow(RWWindow *owner);
 
20
   
 
21
   virtual void show();
 
22
};
 
23
 
 
24
 
 
25