~ubuntu-branches/ubuntu/saucy/gnash/saucy-proposed

« back to all changes in this revision

Viewing changes to gui/fbsup.h

  • Committer: Bazaar Package Importer
  • Author(s): Sindhudweep Narayan Sarkar
  • Date: 2009-10-07 00:06:10 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20091007000610-mj9rwqe774gizn1j
Tags: 0.8.6-0ubuntu1
new upstream release 0.8.6 (LP: #435897)

Show diffs side-by-side

added added

removed removed

Lines of Context:
168
168
        /// Initializes mouse routines
169
169
        bool init_mouse();
170
170
        
171
 
        /// Checks for any mouse activity
172
 
        void check_mouse();
 
171
        /// Checks for and processes any mouse activity. Returns true on activity.
 
172
        bool check_mouse();
173
173
        
174
174
        /// Initializes keyboard routines 
175
175
        bool init_keyboard();
177
177
        /// Translates a scancode from the Linux Input Subsystem to a Gnash key code 
178
178
    gnash::key::code scancode_to_gnash_key(int code, bool shift);
179
179
        
180
 
        /// Checks for any keyboard activity
181
 
        void check_keyboard();
 
180
        /// Checks for and processes any keyboard activity. Returns true on activity.
 
181
        bool check_keyboard();
182
182
        
183
183
#ifdef USE_INPUT_EVENTS         
184
184
    /// Applies builtin touchscreen calibration
189
189
        int valid_y(int y);
190
190
                
191
191
        public:
192
 
                FBGui();
193
 
                FBGui(unsigned long xid, float scale, bool loop, unsigned int depth);
 
192
                FBGui(unsigned long xid, float scale, bool loop, RunResources& r);
194
193
    virtual ~FBGui();
195
194
    virtual bool init(int argc, char ***argv);
196
195
    virtual bool createWindow(const char* title, int width, int height);