~ubuntu-branches/debian/sid/kde-style-qtcurve/sid

« back to all changes in this revision

Viewing changes to kwin/qtcurvehandler.h

  • Committer: Bazaar Package Importer
  • Author(s): Fathi Boudra
  • Date: 2009-10-11 14:35:38 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20091011143538-705l6lh4v46hiy5t
Tags: 0.69.2-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
    bool            menuClose() const       { return itsMenuClose; }
88
88
    bool            showResizeGrip() const  { return itsShowResizeGrip; }
89
89
    bool            roundBottom() const     { return itsRoundBottom && itsBorderSize>1; }
90
 
    bool            noBorder() const        { return itsNoBorder; }
 
90
    bool            outerBorder() const     { return itsOuterBorder; }
91
91
    QStyle *        wStyle() const          { return itsStyle ? itsStyle : QApplication::style(); }
92
 
    bool            smallBorder() const;
 
92
    int             borderEdgeSize() const;
 
93
    int             titleBarPad() const     { return itsTitleBarPad; }
93
94
 
94
95
    QList<QtCurveHandler::BorderSize>  borderSizes() const;
95
96
 
110
111
            itsMenuClose,
111
112
            itsShowResizeGrip,
112
113
            itsRoundBottom,
113
 
            itsNoBorder;
 
114
            itsOuterBorder;
114
115
    int     itsBorderSize,
115
116
            itsTitleHeight,
116
117
            itsTitleHeightTool,
117
 
            itsTimeStamp;
 
118
            itsTimeStamp,
 
119
            itsTitleBarPad;
118
120
    QFont   itsTitleFont,
119
121
            itsTitleFontTool;
120
122
    QStyle  *itsStyle;