Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-05-25 | Add missing safeDraw to some windows. | Andrei Karas | 9 | -1/+110 | |
Without it drawing code can mix safe and not safe drawing. | |||||
2015-05-25 | Add safeDraw method into tab. | Andrei Karas | 2 | -34/+103 | |
2015-05-25 | Add safeDraw method into equipmentwindow. | Andrei Karas | 2 | -36/+91 | |
2015-05-25 | Add safeDraw method into avatarlistbox. | Andrei Karas | 2 | -9/+237 | |
2015-05-25 | Add safeDraw method into window. | Andrei Karas | 2 | -63/+96 | |
2015-05-25 | Add safeDraw method into scrollarea. | Andrei Karas | 2 | -42/+59 | |
2015-05-25 | Add safeDraw method into shortcutcontainer childs. | Andrei Karas | 10 | -18/+352 | |
2015-05-25 | Add safeDraw method into progressbar. | Andrei Karas | 2 | -83/+123 | |
2015-05-25 | Add safeDraw method into button. | Andrei Karas | 2 | -31/+154 | |
2015-05-25 | Add safeDraw method into slider. | Andrei Karas | 2 | -88/+106 | |
2015-05-25 | Add safeDraw method into popup. | Andrei Karas | 2 | -17/+25 | |
2015-05-25 | Add safeDraw method into emotepage. | Andrei Karas | 2 | -33/+46 | |
2015-05-25 | Add basic support for draw controls method without batching (safeDraw). | Andrei Karas | 2 | -3/+18 | |
2015-05-25 | Remove useless method definition. | Andrei Karas | 1 | -5/+0 | |
2015-05-25 | Add missing override keyword. | Andrei Karas | 1 | -1/+1 | |
2015-05-25 | Remove color2 from graphics. | Andrei Karas | 4 | -22/+20 | |
2015-05-25 | Dont set global color variables before drawing text. | Andrei Karas | 26 | -106/+259 | |
This allow not set actual OpenGL color on each call because it useless for drawing text. | |||||
2015-05-24 | From ChatTab::chatLog removed default parameter for message owner type. | Andrei Karas | 5 | -19/+35 | |
2015-05-24 | Add strong typed bool type TryRemoveColors. | Andrei Karas | 4 | -19/+34 | |
2015-05-24 | Add strong typed bool type IgnoreRecord. | Andrei Karas | 4 | -11/+22 | |
2015-05-24 | Add strong typed bool type Online. | Andrei Karas | 2 | -3/+5 | |
2015-05-24 | Remove simpletypes.h. | Andrei Karas | 6 | -6/+0 | |
2015-05-24 | Move type Enable into separate file. | Andrei Karas | 1 | -0/+1 | |
2015-05-24 | Move type Modifiable into separate file. | Andrei Karas | 3 | -0/+5 | |
2015-05-24 | Move type ShowCenter into separate file. | Andrei Karas | 2 | -0/+3 | |
2015-05-24 | Move type Modal into separate file. | Andrei Karas | 4 | -0/+4 | |
2015-05-24 | Move type Equipm into separate file. | Andrei Karas | 1 | -0/+1 | |
2015-05-24 | Move type Favorite into separate file. | Andrei Karas | 1 | -0/+1 | |
2015-05-24 | Move type Damaged into separate file. | Andrei Karas | 1 | -0/+1 | |
2015-05-24 | Move type Identified into separate file. | Andrei Karas | 1 | -0/+2 | |
2015-05-24 | Move simpletypes.h into directory simpletypes. | Andrei Karas | 6 | -6/+6 | |
2015-05-24 | Improve checkbox draw speed. | Andrei Karas | 2 | -7/+60 | |
Use local text image and improve a bit calculations in draw. | |||||
2015-05-24 | Improve radiobutton draw speed. | Andrei Karas | 2 | -8/+60 | |
Use local text image and improve a bit calculations in draw. | |||||
2015-05-24 | Fix compilation warning. | Andrei Karas | 1 | -1/+1 | |
2015-05-23 | If window with button is hidden then release text image and vertexes. | Andrei Karas | 2 | -0/+23 | |
This will reduce memory usage and not affect performance. | |||||
2015-05-23 | If window with label is hidden then release text image. | Andrei Karas | 2 | -0/+24 | |
This will reduce memore usage and not affect performance. | |||||
2015-05-23 | Move window variable from widget class to widget2 class. | Andrei Karas | 8 | -12/+20 | |
2015-05-23 | Move most initialisation code in tabbedarea from constructor to postInit. | Andrei Karas | 1 | -3/+4 | |
2015-05-23 | Set mWindow pointer to self in postInit base methods for window and popup. | Andrei Karas | 2 | -2/+2 | |
2015-05-23 | Add missing calls to postInit for windows and popups. | Andrei Karas | 2 | -0/+2 | |
2015-05-23 | Add check in popups for posInit() calls. | Andrei Karas | 2 | -5/+11 | |
If postInit() was not called show error in log. | |||||
2015-05-23 | Add check in windows for posInit() calls. | Andrei Karas | 2 | -3/+9 | |
If postInit() was not called show error in log. | |||||
2015-05-22 | Fix code style. | Andrei Karas | 9 | -11/+11 | |
2015-05-21 | Call postInit after each window creation. | Andrei Karas | 16 | -24/+42 | |
2015-05-21 | Call Popup::postInit from all popups with overrided postInit method. | Andrei Karas | 9 | -0/+9 | |
2015-05-21 | Call Window::postInit from all windows with overrided postInit method. | Andrei Karas | 27 | -0/+27 | |
2015-05-21 | Add parent window field to all widgets. | Andrei Karas | 3 | -0/+12 | |
2015-05-20 | Fix memory leak in fast text draw code. | Andrei Karas | 2 | -3/+6 | |
2015-05-20 | Use fast draw way in drawing string in buttons. | Andrei Karas | 2 | -7/+42 | |
2015-05-20 | Add fast way for draw not changed text strings. | Andrei Karas | 11 | -29/+288 | |
TextChunk with colors and image stored inside draw object. If string or color changed old string image moved to cache. New string image generated or moved from cache. Use new way in drawing string in label. |