Changeset 32
- Timestamp:
- 12/15/06 12:00:35 (2 years ago)
- Files:
-
- trunk/minwin/docs/html/app.html (modified) (1 diff)
- trunk/minwin/docs/html/event.html (modified) (4 diffs)
- trunk/minwin/docs/html/font.html (modified) (1 diff)
- trunk/minwin/docs/html/geometry.html (modified) (4 diffs)
- trunk/minwin/docs/html/image.html (modified) (1 diff)
- trunk/minwin/docs/html/menu.html (modified) (2 diffs)
- trunk/minwin/docs/html/paint.html (modified) (1 diff)
- trunk/minwin/docs/html/peer.html (modified) (2 diffs)
- trunk/minwin/docs/minwin.ddoc (modified) (1 diff)
- trunk/minwin/docs/minwin/app.d (modified) (1 diff)
- trunk/minwin/docs/minwin/event.d (modified) (4 diffs)
- trunk/minwin/docs/minwin/font.d (modified) (1 diff)
- trunk/minwin/docs/minwin/geometry.d (modified) (1 diff)
- trunk/minwin/docs/minwin/image.d (modified) (1 diff)
- trunk/minwin/docs/minwin/menu.d (modified) (1 diff)
- trunk/minwin/docs/minwin/paint.d (modified) (1 diff)
- trunk/minwin/docs/minwin/peer.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/minwin/docs/html/app.html
r29 r32 228 228 229 229 </dd> 230 <dt><big>XtAppContext <u>context</u>;231 </big></dt>232 <dd><font color=green>Motif</font> global AppContext.233 <br />234 <br />235 236 237 </dd>238 <dt><big>Display* <u>display</u>;239 </big></dt>240 <dd><font color=green>Motif</font> global <u>display</u> used to initialize the AppContext.241 <br />242 <br />243 244 245 </dd>246 <dt><big>ImlibData* <u>imlibdata</u>;247 </big></dt>248 <dd><font color=green>Motif</font> global Imlib initialiation data.249 <br />250 <br />251 252 253 </dd>254 230 </dl> 255 231 trunk/minwin/docs/html/event.html
r29 r32 124 124 <font color=red>Windows</font> MSG <br /> 125 125 126 <font color=green>Motif</font> XEvent <br />127 128 126 <font color=blue>GTK</font> GdkEvent 129 127 … … 175 173 <font color=red>Windows</font> MSG <br /> 176 174 177 <font color=green>Motif</font> XKeyEvent <br />178 179 175 <font color=blue>GTK</font> GdkKeyEvent 180 176 … … 258 254 <font color=red>Windows</font> MSG <br /> 259 255 260 <font color=green>Motif</font> XMouseEvent <br />261 262 256 <font color=blue>GTK</font> GdkMouseEvent 263 257 … … 372 366 373 367 <font color=red>Windows</font> MSG <br /> 374 375 <font color=green>Motif</font> XConfigureEvent <br />376 368 377 369 <font color=blue>GTK</font> GdkEventConfigure trunk/minwin/docs/html/font.html
r29 r32 172 172 <font color=red>Windows</font> HFONT <br /> 173 173 174 <font color=green>Motif</font> minwin.x11.Font <br />175 176 174 <font color=blue>GTK</font> PangoFontDescription* 177 175 trunk/minwin/docs/html/geometry.html
r29 r32 83 83 <font color=red>Windows</font> RECT <br /> 84 84 85 <font color=green>Motif</font> XRect <br />86 87 85 <font color=blue>GTK</font> GdkRectangle 88 86 … … 100 98 <font color=red>Windows</font> POINT <br /> 101 99 102 <font color=green>Motif</font> XPoint <br />103 104 100 <font color=blue>GTK</font> GdkPoint 105 101 … … 122 118 <font color=red>Windows</font> COLORREF <br /> 123 119 124 <font color=green>Motif</font> uint <br />125 126 120 <font color=blue>GTK</font> uint 127 121 … … 138 132 139 133 <font color=red>Windows</font> HRGN <br /> 140 141 <font color=green>Motif</font> XRegion <br />142 134 143 135 <font color=blue>GTK</font> GdkRegion* trunk/minwin/docs/html/image.html
r29 r32 79 79 <font color=red>Windows</font> HBITMAP <br /> 80 80 81 <font color=green>Motif</font> Pixmap <br />82 83 81 <font color=blue>GTK</font> GdkPixmap* 84 82 trunk/minwin/docs/html/menu.html
r29 r32 79 79 <font color=red>Windows</font> HMENU <br /> 80 80 81 <font color=green>Motif</font> Widget <br />82 83 81 <font color=blue>GTK</font> GtkWidget* 84 82 … … 95 93 96 94 <font color=red>Windows</font> HMENU <br /> 97 98 <font color=green>Motif</font> Widget <br />99 95 100 96 <font color=blue>GTK</font> GtkWidget* trunk/minwin/docs/html/paint.html
r29 r32 183 183 <font color=red>Windows</font> HDC <br /> 184 184 185 <font color=green>Motif</font> GC <br />186 187 185 <font color=blue>GTK</font> GdkGC* 188 186 trunk/minwin/docs/html/peer.html
r29 r32 79 79 <font color=red>Windows</font> HWND <br /> 80 80 81 <font color=green>Motif</font> Widget <br />82 83 81 <font color=blue>GTK</font> GdkWidget* 84 82 … … 95 93 96 94 <font color=red>Windows</font> HWND <br /> 97 98 <font color=green>Motif</font> Widget <br />99 95 100 96 <font color=blue>GTK</font> GdkWidget* trunk/minwin/docs/minwin.ddoc
r29 r32 8 8 9 9 WIN = $(RED Windows) 10 MOTIF = $(GREEN Motif)11 10 GTK = $(BLUE GTK) 12 11 PLATFORMS = $(WIN) $1 $(BR) 13 $(MOTIF) $2 $(BR) 14 $(GTK) $3 12 $(GTK) $2 15 13 16 14 MAIN_TITLE = <h1 class="title">$0</h1> trunk/minwin/docs/minwin/app.d
r23 r32 65 65 /// $(WIN) current event being processed by the main loop. 66 66 Event event; 67 68 /// $(MOTIF) global AppContext.69 XtAppContext context;70 /// $(MOTIF) global display used to initialize the AppContext.71 Display* display;72 /// $(MOTIF) global Imlib initialiation data.73 ImlibData* imlibdata;74 67 } trunk/minwin/docs/minwin/event.d
r28 r32 44 44 45 45 /// Platform-specific generic event type. 46 /// $(PLATFORMS MSG, XEvent,GdkEvent)46 /// $(PLATFORMS MSG, GdkEvent) 47 47 alias EventNative_ EventNative; 48 48 … … 59 59 60 60 /// Platform-specific generic key event type. 61 /// $(PLATFORMS MSG, XKeyEvent,GdkKeyEvent)61 /// $(PLATFORMS MSG, GdkKeyEvent) 62 62 alias KeyEventNative_ KeyEventNative; 63 63 … … 82 82 83 83 /// Platform-specific generic mouse event type. 84 /// $(PLATFORMS MSG, XMouseEvent,GdkMouseEvent)84 /// $(PLATFORMS MSG, GdkMouseEvent) 85 85 alias void* MouseEventNative; 86 86 … … 113 113 114 114 /// Platform-specific generic window event type. 115 /// $(PLATFORMS MSG, XConfigureEvent,GdkEventConfigure)115 /// $(PLATFORMS MSG, GdkEventConfigure) 116 116 alias WindowEventNative_ WindowEventNative; 117 117 trunk/minwin/docs/minwin/font.d
r29 r32 44 44 45 45 /// Platform-specific font type. 46 /// $(PLATFORMS HFONT, minwin.x11.Font,PangoFontDescription*)46 /// $(PLATFORMS HFONT, PangoFontDescription*) 47 47 alias FontPeer_ FontPeer; 48 48 trunk/minwin/docs/minwin/geometry.d
r23 r32 17 17 18 18 /// Platform-specific rectangle type 19 /// $(PLATFORMS RECT, XRect,GdkRectangle)19 /// $(PLATFORMS RECT, GdkRectangle) 20 20 alias RectNative_ RectNative; 21 21 22 22 /// Platform-specific point type 23 /// $(PLATFORMS POINT, XPoint,GdkPoint)23 /// $(PLATFORMS POINT, GdkPoint) 24 24 alias PointNative_ PointNative; 25 25 26 26 /// Platform-specific color type for RGB tuples. 27 27 /// On X-based systems a uint is used to pack the red, green and blue components. 28 /// $(PLATFORMS COLORREF, uint , uint)28 /// $(PLATFORMS COLORREF, uint) 29 29 alias ColorNative_ ColorNative; 30 30 31 31 /// Alias for native region type. 32 /// $(PLATFORMS HRGN, XRegion,GdkRegion*)32 /// $(PLATFORMS HRGN, GdkRegion*) 33 33 alias RegionPeer_ RegionPeer; 34 34 trunk/minwin/docs/minwin/image.d
r24 r32 10 10 11 11 /// Platform-specific rectangle type. 12 /// $(PLATFORMS HBITMAP, Pixmap,GdkPixmap*)12 /// $(PLATFORMS HBITMAP, GdkPixmap*) 13 13 alias ImagePeer_ ImagePeer; 14 14 trunk/minwin/docs/minwin/menu.d
r23 r32 11 11 12 12 /// Platform-specific menu type 13 /// $(PLATFORMS HMENU, Widget,GtkWidget*)13 /// $(PLATFORMS HMENU, GtkWidget*) 14 14 alias MenuPeer_ MenuPeer; 15 15 16 16 /// Platform-specific menu bar type 17 /// $(PLATFORMS HMENU, Widget,GtkWidget*)17 /// $(PLATFORMS HMENU, GtkWidget*) 18 18 alias MenuBarPeer_ MenuBarPeer; 19 19 trunk/minwin/docs/minwin/paint.d
r23 r32 48 48 typedef void* GContextPeer_; 49 49 /// Platform-specific graphics context type. 50 /// $(PLATFORMS HDC, G C, GdkGC*)50 /// $(PLATFORMS HDC, GdkGC*) 51 51 alias GContextPeer_ GContextPeer; 52 52 trunk/minwin/docs/minwin/peer.d
r23 r32 9 9 10 10 /// Alias for the native type for parenting controls 11 /// $(PLATFORMS HWND, Widget,GdkWidget*)11 /// $(PLATFORMS HWND, GdkWidget*) 12 12 alias PeerForAdd_ PeerForAdd; 13 13 14 14 /// Alias for the native type for a control or window child 15 /// $(PLATFORMS HWND, Widget,GdkWidget*)15 /// $(PLATFORMS HWND, GdkWidget*) 16 16 alias WindowChildPeer_ WindowChildPeer; 17 17
