Q_SLOTS/Q_SIGNALS in Oxygen windeco
This commit is contained in:
parent
075b0602e9
commit
f5819656b6
12 changed files with 21 additions and 21 deletions
|
@ -55,7 +55,7 @@ namespace Oxygen
|
|||
void setConfiguration( ConfigurationPtr configuration )
|
||||
{ _configuration = configuration; }
|
||||
|
||||
public slots:
|
||||
public Q_SLOTS:
|
||||
|
||||
//! read current configuration
|
||||
virtual void load( void );
|
||||
|
@ -63,7 +63,7 @@ namespace Oxygen
|
|||
//! save current configuration
|
||||
virtual void save( void );
|
||||
|
||||
protected slots:
|
||||
protected Q_SLOTS:
|
||||
|
||||
//! check whether configuration is changed and emit appropriate signal if yes
|
||||
virtual void updateChanged();
|
||||
|
|
|
@ -55,7 +55,7 @@ namespace Oxygen {
|
|||
//! destructor
|
||||
~Config();
|
||||
|
||||
signals:
|
||||
Q_SIGNALS:
|
||||
|
||||
//! emmited whenever configuration is changed
|
||||
void changed();
|
||||
|
@ -63,7 +63,7 @@ namespace Oxygen {
|
|||
//! emmited whenever configuration is changed
|
||||
void changed( bool );
|
||||
|
||||
public slots:
|
||||
public Q_SLOTS:
|
||||
|
||||
//! load configuration
|
||||
/*! although kconfiggroup argument is not used. It is required by KWin API */
|
||||
|
@ -87,7 +87,7 @@ namespace Oxygen {
|
|||
//! toggle expert mode
|
||||
void toggleExpertMode( bool );
|
||||
|
||||
private slots:
|
||||
private Q_SLOTS:
|
||||
|
||||
//! update change state
|
||||
void updateChanged( void );
|
||||
|
|
|
@ -81,12 +81,12 @@ namespace Oxygen
|
|||
//! event filter
|
||||
virtual bool eventFilter( QObject*, QEvent* );
|
||||
|
||||
signals:
|
||||
Q_SIGNALS:
|
||||
|
||||
//! emmited when changed
|
||||
void changed( bool );
|
||||
|
||||
protected slots:
|
||||
protected Q_SLOTS:
|
||||
|
||||
//! toggle expert mode
|
||||
void toggleExpertModeInternal( void )
|
||||
|
|
|
@ -72,7 +72,7 @@ namespace Oxygen
|
|||
else return Configuration::ExceptionWindowClassName;
|
||||
}
|
||||
|
||||
signals:
|
||||
Q_SIGNALS:
|
||||
|
||||
void detectionDone( bool );
|
||||
|
||||
|
|
|
@ -64,7 +64,7 @@ namespace Oxygen
|
|||
virtual bool isChanged( void ) const
|
||||
{ return _changed; }
|
||||
|
||||
signals:
|
||||
Q_SIGNALS:
|
||||
|
||||
//! emmited when changed
|
||||
void changed( bool );
|
||||
|
@ -78,12 +78,12 @@ namespace Oxygen
|
|||
emit changed( value );
|
||||
}
|
||||
|
||||
protected slots:
|
||||
protected Q_SLOTS:
|
||||
|
||||
//! check whether configuration is changed and emit appropriate signal if yes
|
||||
virtual void updateChanged();
|
||||
|
||||
private slots:
|
||||
private Q_SLOTS:
|
||||
|
||||
//! select window properties from grabbed pointers
|
||||
void selectWindowProperties( void );
|
||||
|
|
|
@ -53,7 +53,7 @@ namespace Oxygen
|
|||
virtual bool isChanged( void ) const
|
||||
{ return _changed; }
|
||||
|
||||
signals:
|
||||
Q_SIGNALS:
|
||||
|
||||
//! emitted when changed
|
||||
void changed( bool );
|
||||
|
@ -68,7 +68,7 @@ namespace Oxygen
|
|||
ExceptionModel& model()
|
||||
{ return _model; }
|
||||
|
||||
protected slots:
|
||||
protected Q_SLOTS:
|
||||
|
||||
//! update button states
|
||||
virtual void updateButtons( void );
|
||||
|
|
|
@ -50,7 +50,7 @@ namespace Oxygen
|
|||
virtual ~ShadowDemoDialog( void )
|
||||
{}
|
||||
|
||||
protected slots:
|
||||
protected Q_SLOTS:
|
||||
|
||||
//! reparse configuration
|
||||
void reparseConfiguration( void );
|
||||
|
|
|
@ -87,7 +87,7 @@ namespace Oxygen
|
|||
if( isVisible() ) update();
|
||||
}
|
||||
|
||||
protected slots:
|
||||
protected Q_SLOTS:
|
||||
|
||||
//! toggle background drawing
|
||||
void toggleBackground( bool value )
|
||||
|
|
|
@ -168,7 +168,7 @@ namespace Oxygen
|
|||
|
||||
//@}
|
||||
|
||||
private slots:
|
||||
private Q_SLOTS:
|
||||
void slotAppMenuHidden();
|
||||
|
||||
private:
|
||||
|
|
|
@ -236,7 +236,7 @@ namespace Oxygen
|
|||
//! paint background to painter
|
||||
void paintBackground( QPainter& ) const;
|
||||
|
||||
public slots:
|
||||
public Q_SLOTS:
|
||||
|
||||
//! triggers widget update in titleRect only
|
||||
/*! one needs to add the title top margin to avoid some clipping glitches */
|
||||
|
@ -419,7 +419,7 @@ namespace Oxygen
|
|||
//! remove shadow hint
|
||||
void removeShadowHint( void );
|
||||
|
||||
protected slots:
|
||||
protected Q_SLOTS:
|
||||
|
||||
//! set target item to -1
|
||||
void clearTargetItem( void );
|
||||
|
|
|
@ -51,12 +51,12 @@ namespace Oxygen
|
|||
//! event filter
|
||||
virtual bool eventFilter( QObject*, QEvent* );
|
||||
|
||||
public slots:
|
||||
public Q_SLOTS:
|
||||
|
||||
//! update background color
|
||||
void activeChange( void );
|
||||
|
||||
protected slots:
|
||||
protected Q_SLOTS:
|
||||
|
||||
//! embed into parent widget
|
||||
void embed( void );
|
||||
|
|
|
@ -154,7 +154,7 @@ namespace Oxygen
|
|||
bool isDirty( void ) const
|
||||
{ return _dirty; }
|
||||
|
||||
signals:
|
||||
Q_SIGNALS:
|
||||
|
||||
void pixmapsChanged( void );
|
||||
|
||||
|
|
Loading…
Reference in a new issue