Changeset 32

Show
Ignore:
Timestamp:
12/15/06 12:00:35 (2 years ago)
Author:
lindquist
Message:

Updated API documentation.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/minwin/docs/html/app.html

    r29 r32  
    228228 
    229229</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> 
    254230</dl> 
    255231 
  • trunk/minwin/docs/html/event.html

    r29 r32  
    124124<font color=red>Windows</font> MSG <br /> 
    125125 
    126             <font color=green>Motif</font> XEvent <br /> 
    127  
    128126            <font color=blue>GTK</font> GdkEvent 
    129127 
     
    175173<font color=red>Windows</font> MSG <br /> 
    176174 
    177             <font color=green>Motif</font> XKeyEvent <br /> 
    178  
    179175            <font color=blue>GTK</font> GdkKeyEvent 
    180176 
     
    258254<font color=red>Windows</font> MSG <br /> 
    259255 
    260             <font color=green>Motif</font> XMouseEvent <br /> 
    261  
    262256            <font color=blue>GTK</font> GdkMouseEvent 
    263257 
     
    372366 
    373367<font color=red>Windows</font> MSG <br /> 
    374  
    375             <font color=green>Motif</font> XConfigureEvent <br /> 
    376368 
    377369            <font color=blue>GTK</font> GdkEventConfigure 
  • trunk/minwin/docs/html/font.html

    r29 r32  
    172172<font color=red>Windows</font> HFONT <br /> 
    173173 
    174             <font color=green>Motif</font> minwin.x11.Font <br /> 
    175  
    176174            <font color=blue>GTK</font> PangoFontDescription* 
    177175 
  • trunk/minwin/docs/html/geometry.html

    r29 r32  
    8383<font color=red>Windows</font> RECT <br /> 
    8484 
    85             <font color=green>Motif</font> XRect <br /> 
    86  
    8785            <font color=blue>GTK</font> GdkRectangle 
    8886 
     
    10098<font color=red>Windows</font> POINT <br /> 
    10199 
    102             <font color=green>Motif</font> XPoint <br /> 
    103  
    104100            <font color=blue>GTK</font> GdkPoint 
    105101 
     
    122118 <font color=red>Windows</font> COLORREF <br /> 
    123119 
    124             <font color=green>Motif</font> uint <br /> 
    125  
    126120            <font color=blue>GTK</font> uint 
    127121 
     
    138132 
    139133<font color=red>Windows</font> HRGN <br /> 
    140  
    141             <font color=green>Motif</font> XRegion <br /> 
    142134 
    143135            <font color=blue>GTK</font> GdkRegion* 
  • trunk/minwin/docs/html/image.html

    r29 r32  
    7979<font color=red>Windows</font> HBITMAP <br /> 
    8080 
    81             <font color=green>Motif</font> Pixmap <br /> 
    82  
    8381            <font color=blue>GTK</font> GdkPixmap* 
    8482 
  • trunk/minwin/docs/html/menu.html

    r29 r32  
    7979<font color=red>Windows</font> HMENU <br /> 
    8080 
    81             <font color=green>Motif</font> Widget <br /> 
    82  
    8381            <font color=blue>GTK</font> GtkWidget* 
    8482 
     
    9593 
    9694<font color=red>Windows</font> HMENU <br /> 
    97  
    98             <font color=green>Motif</font> Widget <br /> 
    9995 
    10096            <font color=blue>GTK</font> GtkWidget* 
  • trunk/minwin/docs/html/paint.html

    r29 r32  
    183183<font color=red>Windows</font> HDC <br /> 
    184184 
    185             <font color=green>Motif</font> GC <br /> 
    186  
    187185            <font color=blue>GTK</font> GdkGC* 
    188186 
  • trunk/minwin/docs/html/peer.html

    r29 r32  
    7979<font color=red>Windows</font> HWND <br /> 
    8080 
    81             <font color=green>Motif</font> Widget <br /> 
    82  
    8381            <font color=blue>GTK</font> GdkWidget* 
    8482 
     
    9593 
    9694<font color=red>Windows</font> HWND <br /> 
    97  
    98             <font color=green>Motif</font> Widget <br /> 
    9995 
    10096            <font color=blue>GTK</font> GdkWidget* 
  • trunk/minwin/docs/minwin.ddoc

    r29 r32  
    88 
    99WIN = $(RED Windows) 
    10 MOTIF = $(GREEN Motif) 
    1110GTK = $(BLUE GTK) 
    1211PLATFORMS = $(WIN) $1 $(BR) 
    13             $(MOTIF) $2 $(BR) 
    14             $(GTK) $3 
     12            $(GTK) $2 
    1513 
    1614MAIN_TITLE = <h1 class="title">$0</h1> 
  • trunk/minwin/docs/minwin/app.d

    r23 r32  
    6565    /// $(WIN) current event being processed by the main loop. 
    6666    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; 
    7467} 
  • trunk/minwin/docs/minwin/event.d

    r28 r32  
    4444 
    4545/// Platform-specific generic event type. 
    46 /// $(PLATFORMS MSG, XEvent, GdkEvent) 
     46/// $(PLATFORMS MSG, GdkEvent) 
    4747alias EventNative_ EventNative; 
    4848 
     
    5959 
    6060/// Platform-specific generic key event type. 
    61 /// $(PLATFORMS MSG, XKeyEvent, GdkKeyEvent) 
     61/// $(PLATFORMS MSG, GdkKeyEvent) 
    6262alias KeyEventNative_ KeyEventNative; 
    6363 
     
    8282 
    8383/// Platform-specific generic mouse event type. 
    84 /// $(PLATFORMS MSG, XMouseEvent, GdkMouseEvent) 
     84/// $(PLATFORMS MSG, GdkMouseEvent) 
    8585alias void* MouseEventNative; 
    8686 
     
    113113 
    114114/// Platform-specific generic window event type. 
    115 /// $(PLATFORMS MSG, XConfigureEvent, GdkEventConfigure) 
     115/// $(PLATFORMS MSG, GdkEventConfigure) 
    116116alias WindowEventNative_ WindowEventNative; 
    117117 
  • trunk/minwin/docs/minwin/font.d

    r29 r32  
    4444 
    4545/// Platform-specific font type. 
    46 /// $(PLATFORMS HFONT, minwin.x11.Font, PangoFontDescription*) 
     46/// $(PLATFORMS HFONT, PangoFontDescription*) 
    4747alias FontPeer_ FontPeer; 
    4848 
  • trunk/minwin/docs/minwin/geometry.d

    r23 r32  
    1717 
    1818/// Platform-specific rectangle type 
    19 /// $(PLATFORMS RECT, XRect, GdkRectangle) 
     19/// $(PLATFORMS RECT, GdkRectangle) 
    2020alias RectNative_ RectNative; 
    2121 
    2222/// Platform-specific point type 
    23 /// $(PLATFORMS POINT, XPoint, GdkPoint) 
     23/// $(PLATFORMS POINT, GdkPoint) 
    2424alias PointNative_ PointNative; 
    2525 
    2626/// Platform-specific color type for RGB tuples. 
    2727/// 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
    2929alias ColorNative_ ColorNative; 
    3030 
    3131/// Alias for native region type. 
    32 /// $(PLATFORMS HRGN, XRegion, GdkRegion*) 
     32/// $(PLATFORMS HRGN, GdkRegion*) 
    3333alias RegionPeer_ RegionPeer; 
    3434 
  • trunk/minwin/docs/minwin/image.d

    r24 r32  
    1010 
    1111/// Platform-specific rectangle type. 
    12 /// $(PLATFORMS HBITMAP, Pixmap, GdkPixmap*) 
     12/// $(PLATFORMS HBITMAP, GdkPixmap*) 
    1313alias ImagePeer_ ImagePeer; 
    1414 
  • trunk/minwin/docs/minwin/menu.d

    r23 r32  
    1111 
    1212/// Platform-specific menu type 
    13 /// $(PLATFORMS HMENU, Widget, GtkWidget*) 
     13/// $(PLATFORMS HMENU, GtkWidget*) 
    1414alias MenuPeer_ MenuPeer; 
    1515 
    1616/// Platform-specific menu bar type 
    17 /// $(PLATFORMS HMENU, Widget, GtkWidget*) 
     17/// $(PLATFORMS HMENU, GtkWidget*) 
    1818alias MenuBarPeer_ MenuBarPeer; 
    1919 
  • trunk/minwin/docs/minwin/paint.d

    r23 r32  
    4848typedef void* GContextPeer_; 
    4949/// Platform-specific graphics context type. 
    50 /// $(PLATFORMS HDC, GC, GdkGC*) 
     50/// $(PLATFORMS HDC, GdkGC*) 
    5151alias GContextPeer_ GContextPeer; 
    5252 
  • trunk/minwin/docs/minwin/peer.d

    r23 r32  
    99 
    1010/// Alias for the native type for parenting controls 
    11 /// $(PLATFORMS HWND, Widget, GdkWidget*) 
     11/// $(PLATFORMS HWND, GdkWidget*) 
    1212alias PeerForAdd_ PeerForAdd; 
    1313 
    1414/// Alias for the native type for a control or window child 
    15 /// $(PLATFORMS HWND, Widget, GdkWidget*) 
     15/// $(PLATFORMS HWND, GdkWidget*) 
    1616alias WindowChildPeer_ WindowChildPeer; 
    1717