~ubuntu-branches/ubuntu/hardy/kdebase-workspace/hardy

« back to all changes in this revision

Viewing changes to kwin/client.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2008-03-03 11:37:30 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080303113730-ppdchskh93rr77le
Tags: 4:4.0.2-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
 
134
134
    // !isMinimized() && not hidden, i.e. normally visible on some virtual desktop
135
135
        bool isShown( bool shaded_is_shown ) const;
 
136
        bool isHiddenInternal() const; // for compositing
136
137
 
137
138
        bool isShade() const; // true only for ShadeNormal
138
139
        ShadeMode shadeMode() const; // prefer isShade()
619
620
    }
620
621
 
621
622
inline
 
623
bool Client::isHiddenInternal() const
 
624
    {
 
625
    return hidden;
 
626
    }
 
627
 
 
628
inline
622
629
bool Client::isShade() const
623
630
    {
624
631
    return shade_mode == ShadeNormal;