/[gnustep]/gnustep/usr-apps/gworkspace/ContentViewers/FolderViewer/FolderViewer.h
ViewVC logotype

Contents of /gnustep/usr-apps/gworkspace/ContentViewers/FolderViewer/FolderViewer.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.2 - (show annotations) (download)
Mon Aug 25 17:19:13 2003 UTC (20 years, 8 months ago) by esersale
Branch: MAIN
Changes since 1.1: +19 -18 lines
File MIME type: text/plain
*** empty log message ***

1 /* FolderViewer.h
2 *
3 * Copyright (C) 2003 Free Software Foundation, Inc.
4 *
5 * Author: Enrico Sersale <enrico@imago.ro>
6 * Date: August 2001
7 *
8 * This file is part of the GNUstep GWorkspace application
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 */
24
25
26 #ifndef FOLDERVIEWER_H
27 #define FOLDERVIEWER_H
28
29 #include <AppKit/NSView.h>
30 #ifdef GNUSTEP
31 #include "ContentViewersProtocol.h"
32 #else
33 #include <GWorkspace/ContentViewersProtocol.h>
34 #endif
35
36 @class NSString;
37 @class NSMatrix;
38 @class NSBox;
39 @class NSTextField;
40
41 @interface FolderViewer : NSView <ContentViewersProtocol>
42 {
43 NSString *myPath;
44 id panel;
45 id buttCancel, buttOk;
46 id gworkspace;
47 id ws;
48 NSBox *sortBox;
49 NSMatrix* matrix;
50 NSTextField *label;
51 int oldSortType, newSortType;
52 int index;
53 NSString *bundlePath;
54 NSString *localizedStr;
55 }
56
57 - (void)newSortType:(id)sender;
58
59 - (void)setNewSortType:(id)sender;
60
61 - (void)revertToOldSortType:(id)sender;
62
63 @end
64
65 #endif // FOLDERVIEWER_H

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26