Skip to content

Commit

Permalink
Add definitions for several member functions of the Window class.
Browse files Browse the repository at this point in the history
  • Loading branch information
BartVandewoestyne committed Feb 12, 2024
1 parent 62ac889 commit a0fe790
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions Structural_Patterns/Bridge/Window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,38 @@
#include "WindowImp.h"
#include "WindowSystemFactory.h"

void Window::Open() {
// TODO
}

void Window::Close() {
// TODO
}

void Window::Iconify() {
// TODO
}

void Window::Deiconify() {
// TODO
}

void SetOrigin(const Point& at) {
// TODO
}

void SetExtent(const Point& extent) {
// TODO
}

void Raise() {
// TODO
}

void Lower() {
// TODO
}

void Window::DrawRect (const Point& p1, const Point& p2) {
WindowImp* imp = GetWindowImp();
imp->DeviceRect(p1.X(), p1.Y(), p2.X(), p2.Y());
Expand Down

0 comments on commit a0fe790

Please sign in to comment.