~onli/simdock/master

« back to all changes in this revision

Viewing changes to src/main.h

  • Committer: onli
  • Date: 2014-05-17 12:47:11 UTC
  • Revision ID: git-v1:e0d77cd3e1bd9d88f1a58f5b3bf983782ff90d33
Show PPA in Readme

Show diffs side-by-side

added added

removed removed

Lines of Context:
151
151
/* ------ Various functions for simImage array manipulation -------*/
152
152
 
153
153
/* Reposition icons according to their size and order
 
154
 * Currently repositioning starts from index 0 so all the icons are moved to the right
 
155
 * TODO: Implement right side and left side repositioning starting from "ind" index?
154
156
 */
155
 
wxSize PositionIcons (wxSize sz, simSettings settings, ImagesArray* ImagesList, bool* changeIcons);
 
157
wxSize PositionIcons (wxSize sz, simSettings settings, ImagesArray* ImagesList);
156
158
wxSize FirstPosition (wxSize sz, simSettings settings, ImagesArray* list);
157
159
 
158
160
/* ------ Various functions for simImage array manipulation -------*/
165
167
  virtual bool OnInit ();
166
168
  virtual void OnInitCmdLine (wxCmdLineParser & parser);
167
169
  virtual bool OnCmdLineParsed (wxCmdLineParser & parser);
 
170
  void reposition() { if (frame) frame->appSize = FirstPosition (frame->GetClientSize (),frame->settings,ImagesList); }
168
171
  void updateSize() { if (frame) frame->updateSize();}
169
172
  void refresh() { if (frame) frame->Refresh(false);}
170
173