| Line |   | 
|---|
| 1 | /* | 
|---|
| 2 |    orxonox - the future of 3D-vertical-scrollers | 
|---|
| 3 |  | 
|---|
| 4 |    Copyright (C) 2004 orx | 
|---|
| 5 |  | 
|---|
| 6 |    This program is free software; you can redistribute it and/or modify | 
|---|
| 7 |    it under the terms of the GNU General Public License as published by | 
|---|
| 8 |    the Free Software Foundation; either version 2, or (at your option) | 
|---|
| 9 |    any later version. | 
|---|
| 10 |  | 
|---|
| 11 |    ### File Specific: | 
|---|
| 12 |    main-programmer: Benjamin Grauer | 
|---|
| 13 |    co-programmer: ... | 
|---|
| 14 | */ | 
|---|
| 15 |  | 
|---|
| 16 | #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_GUI | 
|---|
| 17 |  | 
|---|
| 18 | #include "glgui_fixedposition_box.h" | 
|---|
| 19 | #include "glgui_handler.h" | 
|---|
| 20 |  | 
|---|
| 21 | #include <cassert> | 
|---|
| 22 |  | 
|---|
| 23 | namespace OrxGui | 
|---|
| 24 | { | 
|---|
| 25 |   ObjectListDefinition(GLGuiFixedpositionBox); | 
|---|
| 26 |   /** | 
|---|
| 27 |    * standard constructor | 
|---|
| 28 |   */ | 
|---|
| 29 |   GLGuiFixedpositionBox::GLGuiFixedpositionBox (OrxGui::Position position, OrxGui::Orientation orientation) | 
|---|
| 30 |       : GLGuiBox(orientation) | 
|---|
| 31 |   { | 
|---|
| 32 |     this->registerObject(this, GLGuiFixedpositionBox::_objectList); | 
|---|
| 33 |  | 
|---|
| 34 |     this->subscribeEvent(ES_ALL, EV_VIDEO_RESIZE); | 
|---|
| 35 |     this->setPosition(position); | 
|---|
| 36 |   } | 
|---|
| 37 |  | 
|---|
| 38 |  | 
|---|
| 39 |   void GLGuiFixedpositionBox::setPosition(OrxGui::Position position) | 
|---|
| 40 |   { | 
|---|
| 41 |     this->_position = position; | 
|---|
| 42 |     this->resize(); | 
|---|
| 43 |   } | 
|---|
| 44 |  | 
|---|
| 45 |  | 
|---|
| 46 |   void GLGuiFixedpositionBox::resize() | 
|---|
| 47 |   { | 
|---|
| 48 |     GLGuiBox::resize(); | 
|---|
| 49 |  | 
|---|
| 50 |     switch (this->_position) | 
|---|
| 51 |     { | 
|---|
| 52 |       case OrxGui::Center: | 
|---|
| 53 |         this->setAbsCoor2D((GLGuiHandler::getInstance()->resolution() - this->getSize2D()) / 2.0); | 
|---|
| 54 |         break; | 
|---|
| 55 |       default: | 
|---|
| 56 |         printf("not done mode yet!!\n"); | 
|---|
| 57 |     } | 
|---|
| 58 |   } | 
|---|
| 59 |  | 
|---|
| 60 |   void GLGuiFixedpositionBox::process(const Event& event) | 
|---|
| 61 |   { | 
|---|
| 62 |     switch(event.type) | 
|---|
| 63 |     { | 
|---|
| 64 |       case EV_VIDEO_RESIZE: | 
|---|
| 65 |         this->resize(); | 
|---|
| 66 |         break; | 
|---|
| 67 |  | 
|---|
| 68 |     } | 
|---|
| 69 |  | 
|---|
| 70 |   } | 
|---|
| 71 |  | 
|---|
| 72 |  | 
|---|
| 73 | } | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.