Searched refs:m_gc (Results 1 - 7 of 7) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/motif/
H A Ddcmemory.cpp51 m_gc = (WXGC) XCreateGC (display, RootWindow (display, DefaultScreen (display)),
78 m_gc = (WXGC) XCreateGC (display, RootWindow (display, DefaultScreen (display)),
96 if (m_gc)
97 XFreeGC((Display*) m_display, (GC) m_gc);
98 m_gc = (WXGC) NULL;
111 m_gc = (WXGC) XCreateGC (display, (Drawable)m_pixmap/* RootWindow (display, DefaultScreen (display)) */,
H A Ddcclient.cpp141 m_gc = (WXGC) 0;
186 m_gc = (WXGC) XCreateGC (display, RootWindow (display, DefaultScreen (display)),
205 if (m_gc)
206 XFreeGC ((Display*) m_display, (GC) m_gc);
207 m_gc = (WXGC) 0;
255 XDrawLine ((Display*) m_display, (Pixmap) m_pixmap, (GC) m_gc, x1d, y1d, x2d, y2d);
277 XDrawLine ((Display*) m_display, (Pixmap) m_pixmap, (GC) m_gc, 0, yy,
279 XDrawLine ((Display*) m_display, (Pixmap) m_pixmap, (GC) m_gc, xx, 0,
352 XFillArc ((Display*) m_display, (Pixmap) m_pixmap, (GC) (GC) m_gc,
365 XDrawArc ((Display*) m_display, (Pixmap) m_pixmap, (GC) m_gc,
[all...]
H A Ddcscreen.cpp60 m_gc = XCreateGC (display, RootWindow (display, DefaultScreen (display)),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/motif/
H A Ddcclient.h82 WXGC GetGC() const { return m_gc; }
145 WXGC m_gc; member in class:wxWindowDC
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk/
H A Ddcclient.cpp137 GdkGC *m_gc; member in struct:wxGC
177 if (wxGCPool[i].m_gc)
178 g_object_unref (wxGCPool[i].m_gc);
193 if (!wxGCPool[i].m_gc)
195 wxGCPool[i].m_gc = gdk_gc_new( window );
196 gdk_gc_set_exposures( wxGCPool[i].m_gc, FALSE );
203 return wxGCPool[i].m_gc;
219 wxGCPool[wxGCPoolSize].m_gc = gdk_gc_new( window );
220 gdk_gc_set_exposures( wxGCPool[wxGCPoolSize].m_gc, FALSE );
228 return wxGCPool[wxGCPoolSize-GC_POOL_ALLOC_SIZE].m_gc;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk1/
H A Ddcclient.cpp148 GdkGC *m_gc; member in struct:wxGC
188 if (wxGCPool[i].m_gc)
189 gdk_gc_unref( wxGCPool[i].m_gc );
204 if (!wxGCPool[i].m_gc)
206 wxGCPool[i].m_gc = gdk_gc_new( window );
207 gdk_gc_set_exposures( wxGCPool[i].m_gc, FALSE );
214 return wxGCPool[i].m_gc;
230 wxGCPool[wxGCPoolSize].m_gc = gdk_gc_new( window );
231 gdk_gc_set_exposures( wxGCPool[wxGCPoolSize].m_gc, FALSE );
239 return wxGCPool[wxGCPoolSize-GC_POOL_ALLOC_SIZE].m_gc;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/x11/
H A Ddcclient.cpp104 GC m_gc; member in struct:wxGC
120 if (wxGCPool[i].m_gc)
121 XFreeGC( wxGlobalDisplay(), wxGCPool[i].m_gc );
129 if (!wxGCPool[i].m_gc)
131 wxGCPool[i].m_gc = XCreateGC( wxGlobalDisplay(), window, 0, NULL );
132 XSetGraphicsExposures( wxGlobalDisplay(), wxGCPool[i].m_gc, FALSE );
139 return wxGCPool[i].m_gc;
152 if (wxGCPool[i].m_gc == gc)

Completed in 45 milliseconds