~ubuntu-branches/ubuntu/gutsy/kdebase-workspace/gutsy

« back to all changes in this revision

Viewing changes to kwin/options.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-10-11 14:04:48 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20071011140448-v0eb7lxbb24zagca
Tags: 3.94.0-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
{
25
25
 
26
26
class Client;
 
27
class CompositingPrefs;
27
28
 
28
29
class Options : public KDecorationOptions 
29
30
    {
295
296
        HiddenPreviews hiddenPreviews;
296
297
        
297
298
        uint refreshRate;
 
299
        // This is for OpenGL mode
298
300
        int smoothScale; // 0 = no, 1 = yes when transformed,
299
301
                         // 2 = try trilinear when transformed; else 1,
300
302
                         // -1 = auto
 
303
        // This is for XRender mode
 
304
        bool xrenderSmoothScale;
301
305
        
302
306
        enum GLMode { GLTFP, GLSHM, GLFallback };
303
307
        GLMode glMode;
334
338
        QStringList ignoreFocusStealingClasses;
335
339
 
336
340
        MouseCommand wheelToMouseCommand( MouseWheelCommand com, int delta );
 
341
        void reloadCompositingSettings(const CompositingPrefs& prefs);
337
342
    };
338
343
 
339
344
extern Options* options;