Replace Qt with TQt

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/10/head
Michele Calgaro 7 months ago
parent efda7b84b2
commit 7be076f07a
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -67,15 +67,15 @@ TQLayoutItem* FlowLayoutIterator::takeCurrent(){
} }
FlowLayout::FlowLayout( TQWidget* parent, Qt::Orientation orientation, int border, int space, const char* name ) FlowLayout::FlowLayout( TQWidget* parent, TQt::Orientation orientation, int border, int space, const char* name )
: TQLayout( parent, border, space, name ), : TQLayout( parent, border, space, name ),
mOrientation(orientation), mLastItem(NULL){ mOrientation(orientation), mLastItem(NULL){
} }
FlowLayout::FlowLayout( TQLayout* parent, Qt::Orientation orientation, int space, const char* name ) FlowLayout::FlowLayout( TQLayout* parent, TQt::Orientation orientation, int space, const char* name )
: TQLayout( parent, space, name ), : TQLayout( parent, space, name ),
mOrientation(orientation), mLastItem(NULL){ mOrientation(orientation), mLastItem(NULL){
} }
FlowLayout::FlowLayout( Qt::Orientation orientation, int space, const char* name ) FlowLayout::FlowLayout( TQt::Orientation orientation, int space, const char* name )
: TQLayout( space, name ), : TQLayout( space, name ),
mOrientation(orientation), mLastItem(NULL){ mOrientation(orientation), mLastItem(NULL){
} }
@ -174,11 +174,11 @@ void FlowLayout::updatePositions(TDEConfig * inTDEConfig){
} }
bool FlowLayout::hasHeightForWidth() const{ bool FlowLayout::hasHeightForWidth() const{
return mOrientation != Qt::Horizontal; return mOrientation != TQt::Horizontal;
} }
bool FlowLayout::hasWidthForHeight() const{ bool FlowLayout::hasWidthForHeight() const{
return mOrientation == Qt::Horizontal; return mOrientation == TQt::Horizontal;
} }
TQSize FlowLayout::sizeHint() const{ TQSize FlowLayout::sizeHint() const{
@ -212,11 +212,11 @@ TQLayoutIterator FlowLayout::iterator(){
return TQLayoutIterator(new FlowLayoutIterator(&mLayoutItems)); return TQLayoutIterator(new FlowLayoutIterator(&mLayoutItems));
} }
Qt::Orientation FlowLayout::getOrientation() const{ TQt::Orientation FlowLayout::getOrientation() const{
return mOrientation; return mOrientation;
} }
void FlowLayout::setOrientation(Qt::Orientation orientation){ void FlowLayout::setOrientation(TQt::Orientation orientation){
mOrientation = orientation; mOrientation = orientation;
} }
@ -226,7 +226,7 @@ void FlowLayout::setGeometry( const TQRect& rect ){
} }
int FlowLayout::doLayout( const TQRect& rect, bool testonly ){ int FlowLayout::doLayout( const TQRect& rect, bool testonly ){
if(mOrientation == Qt::Horizontal) if(mOrientation == TQt::Horizontal)
return doLayoutHorizontal(rect, testonly); return doLayoutHorizontal(rect, testonly);
else else
return doLayoutVertical(rect, testonly); return doLayoutVertical(rect, testonly);

@ -37,9 +37,9 @@ public:
ABOVE = 0, ABOVE = 0,
BELOW = 1 BELOW = 1
}; };
FlowLayout( TQWidget* parent, Qt::Orientation orientation=Qt::Horizontal, int border=0, int space=-1, const char* name=0 ); FlowLayout( TQWidget* parent, TQt::Orientation orientation=TQt::Horizontal, int border=0, int space=-1, const char* name=0 );
FlowLayout( TQLayout* parent, Qt::Orientation orientation=Qt::Horizontal, int space=-1, const char* name=0 ); FlowLayout( TQLayout* parent, TQt::Orientation orientation=TQt::Horizontal, int space=-1, const char* name=0 );
FlowLayout( Qt::Orientation=Qt::Horizontal, int space=-1, const char* name=0 ); FlowLayout( TQt::Orientation=TQt::Horizontal, int space=-1, const char* name=0 );
virtual ~FlowLayout(); virtual ~FlowLayout();
/** /**
* tells all sources their positions * tells all sources their positions
@ -66,10 +66,10 @@ public:
TQSize minimumSize() const; TQSize minimumSize() const;
TQLayoutIterator iterator(); TQLayoutIterator iterator();
TQSizePolicy::ExpandData expanding() const; TQSizePolicy::ExpandData expanding() const;
Qt::Orientation getOrientation() const; TQt::Orientation getOrientation() const;
public slots: public slots:
void setOrientation(Qt::Orientation orientation); void setOrientation(TQt::Orientation orientation);
protected: protected:
void setGeometry(const TQRect&); void setGeometry(const TQRect&);
@ -78,7 +78,7 @@ private:
int doLayout( const TQRect&, bool testOnly = FALSE ); int doLayout( const TQRect&, bool testOnly = FALSE );
int doLayoutHorizontal( const TQRect&, bool testOnly ); int doLayoutHorizontal( const TQRect&, bool testOnly );
int doLayoutVertical( const TQRect&, bool testOnly ); int doLayoutVertical( const TQRect&, bool testOnly );
Qt::Orientation mOrientation; TQt::Orientation mOrientation;
TQPtrList<TQLayoutItem> mLayoutItems; TQPtrList<TQLayoutItem> mLayoutItems;
// this is the connection between a layout item and its source. // this is the connection between a layout item and its source.
TQMap<TQLayoutItem*, Source*> mSources; TQMap<TQLayoutItem*, Source*> mSources;

@ -306,7 +306,7 @@ void Kima::savePreferences(){
int Kima::widthForHeight(int inHeight) const{ int Kima::widthForHeight(int inHeight) const{
//kdDebug() << "widthForHeight: " << height << endl; //kdDebug() << "widthForHeight: " << height << endl;
mLayout->setOrientation(Qt::Horizontal); mLayout->setOrientation(TQt::Horizontal);
if(mCachedHeight != inHeight){ if(mCachedHeight != inHeight){
mCachedHeight = inHeight; mCachedHeight = inHeight;
mCachedWFH = 0; mCachedWFH = 0;
@ -317,18 +317,18 @@ int Kima::widthForHeight(int inHeight) const{
int Kima::heightForWidth(int inWidth) const{ int Kima::heightForWidth(int inWidth) const{
//kdDebug() << "heightForWidth: " << width << endl; //kdDebug() << "heightForWidth: " << width << endl;
mLayout->setOrientation(Qt::Vertical); mLayout->setOrientation(TQt::Vertical);
return mLayout->heightForWidth(inWidth); return mLayout->heightForWidth(inWidth);
//return sizeHint().height(); //return sizeHint().height();
} }
void Kima::mousePressEvent(TQMouseEvent* inEvent ){ void Kima::mousePressEvent(TQMouseEvent* inEvent ){
if(inEvent->button() == Qt::RightButton){ if(inEvent->button() == TQt::RightButton){
mMenu->popup( inEvent->globalPos() ); mMenu->popup( inEvent->globalPos() );
if(mDraggedSourceItem) if(mDraggedSourceItem)
mDraggedSourceItem->widget()->unsetCursor(); // unset drag cursor mDraggedSourceItem->widget()->unsetCursor(); // unset drag cursor
} }
else if(inEvent->button() == Qt::LeftButton){ else if(inEvent->button() == TQt::LeftButton){
TQLayoutIterator it = mLayout->iterator(); TQLayoutIterator it = mLayout->iterator();
while(it.current()){ while(it.current()){
TQWidget * c = it.current()->widget(); TQWidget * c = it.current()->widget();

Loading…
Cancel
Save