~ubuntu-branches/debian/wheezy/cegui-mk2/wheezy

« back to all changes in this revision

Viewing changes to cegui/src/ScriptingModules/LuaScriptModule/package/elements/Scrollbar.pkg

  • Committer: Package Import Robot
  • Author(s): Muammar El Khatib
  • Date: 2011-10-13 12:43:12 UTC
  • mfrom: (10.1.5 experimental)
  • Revision ID: package-import@ubuntu.com-20111013124312-qch0o3fayloxgxu3
Tags: 0.7.5-7
Moved to unstable. (Closes: #645109)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***********************************************************************
 
2
        Scrollbar
 
3
***********************************************************************/
 
4
class Scrollbar : public Window
 
5
{
 
6
        float getDocumentSize() const;
 
7
        float getPageSize() const;
 
8
        float getStepSize() const;
 
9
        float getOverlapSize() const;
 
10
        float getScrollPosition() const;
 
11
    bool isEndLockEnabled() const;
 
12
 
 
13
        void setDocumentSize(float document_size);
 
14
        void setPageSize(float page_size);
 
15
        void setStepSize(float step_size);
 
16
        void setOverlapSize(float overlap_size);
 
17
        void setScrollPosition(float position);
 
18
    void setEndLockEnabled(bool enabled);
 
19
};