Design Patterns : Elements of Reusable Object-Oriented Software


Design Patterns: Elements of Reusable Object-Oriented Software



Download 4,06 Mb.
Pdf ko'rish
bet128/288
Sana07.04.2022
Hajmi4,06 Mb.
#535140
1   ...   124   125   126   127   128   129   130   131   ...   288
Bog'liq
GOF Design Patterns

Design Patterns: Elements of Reusable Object-Oriented Software 
179 
// ... 
virtual void DrawContents(); 
private: 
const char* _bitmapName; 
}; 
...and it implements DrawContents to draw the bitmap on the window: 
void IconWindow::DrawContents() { 
WindowImp* imp = GetWindowImp(); 
if (imp != 0) { 
imp->DeviceBitmap(_bitmapName, 0.0, 0.0); 


Many other variations of Window are possible. A TransientWindow may need to 
communicate with the window that created it during the dialog; hence it keeps 
a reference to that window. A PaletteWindow always floats above other windows. 
An IconDockWindow holds IconWindows and arranges them neatly. 
Window operations are defined in terms of the WindowImp interface. For example, 
DrawRect extracts four coordinates from its two Point parameters before calling 
the WindowImp operation that draws the rectangle in the window: 
void Window::DrawRect (const Point& p1, const Point& p2) { 
WindowImp* imp = GetWindowImp(); 
imp->DeviceRect(p1.X(), p1.Y(), p2.X(), p2.Y()); 

Concrete subclasses of WindowImp support different window systems. The XWindowImp 
subclass supports the X Window System: 
class XWindowImp : public WindowImp { 
public: 
XWindowImp(); 
virtual void DeviceRect(Coord, Coord, Coord, Coord); 
// remainder of public interface... 
private: 
// lots of X window system-specific state, including: 
Display* _dpy; 
Drawable _winid; // window id 


Design Patterns: Elements of Reusable Object-Oriented Software 
180 
GC _gc; // window graphic context 
}; 
For Presentation Manager (PM), we define a PMWindowImp class: 
class PMWindowImp : public WindowImp { 
public: 
PMWindowImp(); 
virtual void DeviceRect(Coord, Coord, Coord, Coord); 
// remainder of public interface... 
private: 
// lots of PM window system-specific state, including: 
HPS _hps; 
}; 
These subclasses implement WindowImp operations in terms of window system 
primitives. For example, DeviceRect is implemented for X as follows: 
void XWindowImp::DeviceRect ( 
Coord x0, Coord y0, Coord x1, Coord y1 
) { 
int x = round(min(x0, x1)); 
int y = round(min(y0, y1)); 
int w = round(abs(x0 - x1)); 
int h = round(abs(y0 - y1)); 
XDrawRectangle(_dpy, _winid, _gc, x, y, w, h); 

The PM implementation might look like this: 
void PMWindowImp::DeviceRect ( 
Coord x0, Coord y0, Coord x1, Coord y1 
) { 
Coord left = min(x0, x1); 
Coord right = max(x0, x1); 
Coord bottom = min(y0, y1); 
Coord top = max(y0, y1); 
PPOINTL point[4]; 
point[0].x = left; point[0].y = top; 



Download 4,06 Mb.

Do'stlaringiz bilan baham:
1   ...   124   125   126   127   128   129   130   131   ...   288




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish