OSDN Git Service

423f88e634da0ce700491c583c1362535ec6d278
[awarsiii/AwarsIV.git] / Awars III / Gallery.h
1 //
2 //  Gallery.h
3 //  Awars III
4 //
5 //  Created by Killery on 2013/01/09.
6 //  Copyright (c) 2013年 Killery. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10 #import "Title.h"
11
12 typedef struct _GALLERY{
13
14     struct _GALLERY *next;
15     NSString *nameTop;
16     NSString *name;
17     NSImage *img;
18     bool Hscene;
19     bool background;
20     
21     struct _GALLERY *sabun;
22
23 }GALLERY;
24
25 GALLERY *G[255];
26 GALLERY *GTop[255];
27 GALLERY *GALL;
28 GALLERY *GALLtop;
29
30 NSInteger GAclrow;
31
32 int GallayClick;
33 bool Gflag1;
34 bool Gflag2;
35 bool Gflag3;
36 bool Gflag4;
37
38 bool Gflag5;
39 bool Gflag6;
40 bool Gflag7;
41 bool Gflag8;
42
43 bool Gflag9;
44 bool Gflag10;
45 bool Gflag11;
46 bool Gflag12;
47
48 int GDclickedNum;
49
50 @interface Gallery : NSObject
51 {
52     NSTimer *timer;
53     
54     IBOutlet NSWindow *titleWindow;
55     IBOutlet NSWindow *galleryWindow;
56     IBOutlet NSWindow *galleryDetailWindow;
57     
58     NSPoint Gpoint;
59     
60     NSMutableArray *galleryListMA;
61     IBOutlet NSArrayController *galleryListAC;
62     IBOutlet NSTableView *galleryListTV;
63     
64     NSArray *fileDataArray;
65     
66     
67     IBOutlet NSImageView *IV01;
68     IBOutlet NSImageView *IV02;
69     IBOutlet NSImageView *IV03;
70     IBOutlet NSImageView *IV04;
71     IBOutlet NSImageView *IV05;
72     IBOutlet NSImageView *IV06;
73     IBOutlet NSImageView *IV07;
74     IBOutlet NSImageView *IV08;
75     IBOutlet NSImageView *IV09;
76     IBOutlet NSImageView *IV10;
77     IBOutlet NSImageView *IV11;
78     IBOutlet NSImageView *IV12;
79     
80     IBOutlet NSMatrix *RB;
81     
82     IBOutlet NSTextField *TF;
83     int galleryMax;
84     int galleryNumb;
85     int gallerySortNumb;
86     
87     IBOutlet NSImageView *IVGD;
88     IBOutlet NSTextField *TFGD;
89
90 }
91
92 -(IBAction)backButton:(id)sender;
93 -(IBAction)radioButton:(id)sender;
94
95 -(IBAction)previous:(id)sender;
96 -(IBAction)next:(id)sender;
97
98 -(IBAction)close:(id)sender;
99
100 @end
101
102
103
104
105
106 @interface GalleryDetail : NSView
107 {
108
109 }
110
111
112
113 @end
114
115
116 @interface GDIV1 : NSView
117 {
118     
119 }
120 @end
121
122 @interface GDIV2: NSView
123 {
124     
125 }
126 @end
127
128 @interface GDIV3 : NSView
129 {
130     
131 }
132 @end
133
134 @interface GDIV4 : NSView
135 {
136     
137 }
138 @end
139
140 @interface GDIV5 : NSView
141 {
142     
143 }
144 @end
145
146 @interface GDIV6 : NSView
147 {
148     
149 }
150 @end
151
152 @interface GDIV7 : NSView
153 {
154     
155 }
156 @end
157
158 @interface GDIV8 : NSView
159 {
160     
161 }
162 @end
163
164 @interface GDIV9 : NSView
165 {
166     
167 }
168 @end
169
170 @interface GDIV10 : NSView
171 {
172     
173 }
174 @end
175
176 @interface GDIV11 : NSView
177 {
178     
179 }
180 @end
181
182 @interface GDIV12 : NSView
183 {
184     
185 }
186 @end
187
188
189
190
191
192
193
194
195