1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
|
#if defined(Hiro_Window)
mWindow::mWindow() {
mObject::state.visible = false;
}
auto mWindow::allocate() -> pObject* {
return new pWindow(*this);
}
auto mWindow::destruct() -> void {
if(auto& menuBar = state.menuBar) menuBar->destruct();
if(auto& sizable = state.sizable) sizable->destruct();
if(auto& statusBar = state.statusBar) statusBar->destruct();
mObject::destruct();
}
//
auto mWindow::append(sMenuBar menuBar) -> type& {
if(auto& menuBar = state.menuBar) remove(menuBar);
menuBar->setParent(this, 0);
state.menuBar = menuBar;
signal(append, menuBar);
return *this;
}
auto mWindow::append(sSizable sizable) -> type& {
if(auto& sizable = state.sizable) remove(sizable);
state.sizable = sizable;
sizable->setParent(this, 0);
signal(append, sizable);
return *this;
}
auto mWindow::append(sStatusBar statusBar) -> type& {
if(auto& statusBar = state.statusBar) remove(statusBar);
statusBar->setParent(this, 0);
state.statusBar = statusBar;
signal(append, statusBar);
return *this;
}
auto mWindow::backgroundColor() const -> Color {
return state.backgroundColor;
}
auto mWindow::dismissable() const -> bool {
return state.dismissable;
}
auto mWindow::doClose() const -> void {
if(state.onClose) return state.onClose();
}
auto mWindow::doDrop(vector<string> names) const -> void {
if(state.onDrop) return state.onDrop(names);
}
auto mWindow::doKeyPress(s32 key) const -> void {
if(state.onKeyPress) return state.onKeyPress(key);
}
auto mWindow::doKeyRelease(s32 key) const -> void {
if(state.onKeyRelease) return state.onKeyRelease(key);
}
auto mWindow::doMove() const -> void {
if(state.onMove) return state.onMove();
}
auto mWindow::doSize() const -> void {
if(state.onSize) return state.onSize();
}
auto mWindow::droppable() const -> bool {
return state.droppable;
}
auto mWindow::frameGeometry() const -> Geometry {
Geometry margin = signal(frameMargin);
return {
state.geometry.x() - margin.x(), state.geometry.y() - margin.y(),
state.geometry.width() + margin.width(), state.geometry.height() + margin.height()
};
}
auto mWindow::fullScreen() const -> bool {
return state.fullScreen;
}
auto mWindow::geometry() const -> Geometry {
return state.geometry;
}
auto mWindow::handle() const -> uintptr_t {
return signal(handle);
}
auto mWindow::maximized() const -> bool {
return state.maximized;
}
auto mWindow::maximumSize() const -> Size {
return state.maximumSize;
}
auto mWindow::menuBar() const -> MenuBar {
return state.menuBar;
}
auto mWindow::minimized() const -> bool {
return state.minimized;
}
auto mWindow::minimumSize() const -> Size {
return state.minimumSize;
}
auto mWindow::modal() const -> bool {
return state.modal;
}
auto mWindow::monitor() const -> u32 {
return signal(monitor);
}
auto mWindow::onClose(const function<void ()>& callback) -> type& {
state.onClose = callback;
return *this;
}
auto mWindow::onDrop(const function<void (vector<string>)>& callback) -> type& {
state.onDrop = callback;
return *this;
}
auto mWindow::onKeyPress(const function<void (s32)>& callback) -> type& {
state.onKeyPress = callback;
return *this;
}
auto mWindow::onKeyRelease(const function<void (s32)>& callback) -> type& {
state.onKeyRelease = callback;
return *this;
}
auto mWindow::onMove(const function<void ()>& callback) -> type& {
state.onMove = callback;
return *this;
}
auto mWindow::onSize(const function<void ()>& callback) -> type& {
state.onSize = callback;
return *this;
}
auto mWindow::remove(sMenuBar menuBar) -> type& {
signal(remove, menuBar);
menuBar->setParent();
state.menuBar.reset();
return *this;
}
auto mWindow::remove(sSizable sizable) -> type& {
signal(remove, sizable);
sizable->setParent();
state.sizable.reset();
return *this;
}
auto mWindow::remove(sStatusBar statusBar) -> type& {
signal(remove, statusBar);
statusBar->setParent();
state.statusBar.reset();
return *this;
}
auto mWindow::reset() -> type& {
if(auto& menuBar = state.menuBar) remove(menuBar);
if(auto& sizable = state.sizable) remove(sizable);
if(auto& statusBar = state.statusBar) remove(statusBar);
return *this;
}
auto mWindow::resizable() const -> bool {
return state.resizable;
}
auto mWindow::setAlignment(Alignment alignment) -> type& {
auto workspace = Monitor::workspace();
auto geometry = frameGeometry();
auto x = workspace.x() + alignment.horizontal() * (workspace.width() - geometry.width());
auto y = workspace.y() + alignment.vertical() * (workspace.height() - geometry.height());
setFramePosition({(s32)x, (s32)y});
return *this;
}
auto mWindow::setAlignment(sWindow relativeTo, Alignment alignment) -> type& {
if(!relativeTo) return setAlignment(alignment);
auto parent = relativeTo->frameGeometry();
auto window = frameGeometry();
//+0 .. +1 => within parent window
auto x = parent.x() + (parent.width() - window.width()) * alignment.horizontal();
auto y = parent.y() + (parent.height() - window.height()) * alignment.vertical();
//-1 .. -0 => beyond parent window
//... I know, relying on -0 IEE754 here is ... less than ideal
if(signbit(alignment.horizontal())) {
x = (parent.x() - window.width()) + abs(alignment.horizontal()) * (parent.width() + window.width());
}
if(signbit(alignment.vertical())) {
y = (parent.y() - window.height()) + abs(alignment.vertical()) * (parent.height() + window.height());
}
setFramePosition({(s32)x, (s32)y});
return *this;
}
auto mWindow::setBackgroundColor(Color color) -> type& {
state.backgroundColor = color;
signal(setBackgroundColor, color);
return *this;
}
auto mWindow::setDismissable(bool dismissable) -> type& {
state.dismissable = dismissable;
signal(setDismissable, dismissable);
return *this;
}
auto mWindow::setDroppable(bool droppable) -> type& {
state.droppable = droppable;
signal(setDroppable, droppable);
return *this;
}
auto mWindow::setFrameGeometry(Geometry geometry) -> type& {
Geometry margin = signal(frameMargin);
return setGeometry({
geometry.x() + margin.x(), geometry.y() + margin.y(),
geometry.width() - margin.width(), geometry.height() - margin.height()
});
}
auto mWindow::setFramePosition(Position position) -> type& {
Geometry margin = signal(frameMargin);
return setGeometry({
position.x() + margin.x(), position.y() + margin.y(),
state.geometry.width(), state.geometry.height()
});
}
auto mWindow::setFrameSize(Size size) -> type& {
Geometry margin = signal(frameMargin);
return setGeometry({
state.geometry.x(), state.geometry.y(),
size.width() - margin.width(), size.height() - margin.height()
});
}
auto mWindow::setFullScreen(bool fullScreen) -> type& {
if(fullScreen != state.fullScreen) {
state.fullScreen = fullScreen;
signal(setFullScreen, fullScreen);
}
return *this;
}
auto mWindow::setGeometry(Geometry geometry) -> type& {
//round fractional bits of geometry coordinates that window managers cannot display.
//the pWindow classes lose this precision and so not doing so here can cause off-by-1 issues.
geometry.setX(round(geometry.x()));
geometry.setY(round(geometry.y()));
geometry.setWidth(round(geometry.width()));
geometry.setHeight(round(geometry.height()));
state.geometry = geometry;
signal(setGeometry, geometry);
if(auto& sizable = state.sizable) sizable->setGeometry(sizable->geometry());
return *this;
}
auto mWindow::setGeometry(Alignment alignment, Size size) -> type& {
auto margin = signal(frameMargin);
auto width = margin.width() + size.width();
auto height = margin.height() + size.height();
auto workspace = Monitor::workspace();
auto x = workspace.x() + alignment.horizontal() * (workspace.width() - width);
auto y = workspace.y() + alignment.vertical() * (workspace.height() - height);
setFrameGeometry({(s32)x, (s32)y, (s32)width, (s32)height});
return *this;
}
auto mWindow::setMaximized(bool maximized) -> type& {
state.maximized = maximized;
signal(setMaximized, maximized);
return *this;
}
auto mWindow::setMaximumSize(Size size) -> type& {
state.maximumSize = size;
signal(setMaximumSize, size);
return *this;
}
auto mWindow::setMinimized(bool minimized) -> type& {
state.minimized = minimized;
signal(setMinimized, minimized);
return *this;
}
auto mWindow::setMinimumSize(Size size) -> type& {
state.minimumSize = size;
signal(setMinimumSize, size);
return *this;
}
auto mWindow::setModal(bool modal) -> type& {
if(state.modal == modal) return *this;
state.modal = modal;
if(modal) {
Application::state().modal++;
} else {
Application::state().modal--;
assert(Application::state().modal >= 0);
}
signal(setModal, modal);
return *this;
}
auto mWindow::setPosition(Position position) -> type& {
return setGeometry({
position.x(), position.y(),
state.geometry.width(), state.geometry.height()
});
}
auto mWindow::setPosition(sWindow relativeTo, Position position) -> type& {
if(!relativeTo) return setPosition(position);
auto geometry = relativeTo->frameGeometry();
return setFramePosition({
geometry.x() + position.x(),
geometry.y() + position.y()
});
}
auto mWindow::setResizable(bool resizable) -> type& {
state.resizable = resizable;
signal(setResizable, resizable);
return *this;
}
auto mWindow::setSize(Size size) -> type& {
return setGeometry({
state.geometry.x(), state.geometry.y(),
size.width(), size.height()
});
}
auto mWindow::setTitle(const string& title) -> type& {
state.title = title;
signal(setTitle, title);
return *this;
}
auto mWindow::setAssociatedFile(const string& filename) -> type& {
#if defined(PLATFORM_MACOS)
signal(setAssociatedFile, filename);
#endif
return *this;
}
auto mWindow::setVisible(bool visible) -> type& {
mObject::setVisible(visible);
if(auto& menuBar = state.menuBar) menuBar->setVisible(menuBar->visible());
if(auto& sizable = state.sizable) sizable->setVisible(sizable->visible());
if(auto& statusBar = state.statusBar) statusBar->setVisible(statusBar->visible());
return *this;
}
auto mWindow::sizable() const -> Sizable {
return state.sizable;
}
auto mWindow::statusBar() const -> StatusBar {
return state.statusBar;
}
auto mWindow::title() const -> string {
return state.title;
}
#endif
|