~ubuntu-branches/ubuntu/trusty/netrek-client-cow/trusty

« back to all changes in this revision

Viewing changes to Wlib.h

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese, Barry deFreese
  • Date: 2009-06-16 15:27:20 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090616152720-whngeaf1w8l23u14
Tags: 3.3.0-1
[ Barry deFreese ]
* New upstream release.
* Install upstream desktop file. (Closes: #522587).
* Add quilt patch system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
extern W_Font W_MyPlanetFont, W_FriendlyPlanetFont, W_EnemyPlanetFont;
64
64
 
65
65
extern void W_Initialize (char *str);
 
66
extern void W_GetPixmaps(W_Window t, W_Window g);
66
67
extern void W_RenameWindow(W_Window window, char *str);
67
68
extern W_Window W_MakeWindow (char *name, int x, int y, int width, int height, W_Window parent, int border, W_Color color);
68
69
extern W_Icon W_StoreBitmap (int width, int height, char *data, W_Window window);
97
98
extern int W_IsMapped (W_Window window);
98
99
void W_ReinitMenu(W_Window window, int neww, int newh);
99
100
void W_ResizeMenu(W_Window window, int neww, int newh);
 
101
void W_ResizeWindow(W_Window window, int neww, int newh);
100
102
extern void W_Beep (void);
101
103
extern void W_DestroyWindow (W_Window window);
102
104
extern int W_WindowWidth (W_Window window);
182
184
int W_EventsQueued(void);
183
185
int W_EventsQueuedCk(void);
184
186
 
 
187
void W_SetBackground(W_Window w, int which);
 
188
void *W_SetBackgroundImage(W_Window w, char *name);
 
189
 
 
190
void W_NextScreenShot(W_Window w, int x, int y);
 
191
void W_DrawScreenShot(W_Window w, int x, int y);
 
192
 
 
193
void *W_ReadImage(W_Window w, char *name);
 
194
void W_DrawImage(int x, int y, void *sprite_v);
 
195
void W_DropImage(void *sprite_v);
 
196
 
185
197
#endif /* _h_Wlib */