diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:30:32 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 20:22:52 +0900 | 
| commit | e1b37ac1936f81994a2c1aa2778298fbc757531f (patch) | |
| tree | 2e2df5ea5786d581b10e51e0cbde9f4921697b2f /kdgantt/KDGanttViewSubwidgets.cpp | |
| parent | d08f80f854355e446d1c6be0eb50166646f7f291 (diff) | |
| download | koffice-e1b37ac1936f81994a2c1aa2778298fbc757531f.tar.gz koffice-e1b37ac1936f81994a2c1aa2778298fbc757531f.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c0332621bc998c9786f4841e86a62b7711fe4abf)
Diffstat (limited to 'kdgantt/KDGanttViewSubwidgets.cpp')
| -rw-r--r-- | kdgantt/KDGanttViewSubwidgets.cpp | 86 | 
1 files changed, 43 insertions, 43 deletions
| diff --git a/kdgantt/KDGanttViewSubwidgets.cpp b/kdgantt/KDGanttViewSubwidgets.cpp index 08ba49299..e63b3aee3 100644 --- a/kdgantt/KDGanttViewSubwidgets.cpp +++ b/kdgantt/KDGanttViewSubwidgets.cpp @@ -725,42 +725,42 @@ KDTimeHeaderWidget:: KDTimeHeaderWidget( TQWidget* parent,KDGanttView* gant )      myPopupMenu = new TQPopupMenu(this);      TQPopupMenu * zoomPopupMenu = new TQPopupMenu(this);      myPopupMenu->insertItem (i18n("Zoom"),zoomPopupMenu, 1); -    zoomPopupMenu->insertItem( i18n("Zoom to 100%"),this, TQT_SLOT(setSettings(int)),0 ,21,21 ); -    zoomPopupMenu->insertItem( i18n("Zoom to Fit"),this, TQT_SLOT(setSettings(int)),0 ,20,20 ); -    zoomPopupMenu->insertItem( i18n("Zoom In (x 2)"),this, TQT_SLOT(setSettings(int)),0 ,22,22 ); -    zoomPopupMenu->insertItem( i18n("Zoom In (x 6)"),this, TQT_SLOT(setSettings(int)),0 ,24,24 ); -    zoomPopupMenu->insertItem( i18n("Zoom In (x 12)"),this, TQT_SLOT(setSettings(int)),0 ,26,26 ); -    zoomPopupMenu->insertItem( i18n("Zoom Out (x 1/2)"),this, TQT_SLOT(setSettings(int)),0 ,23,23 ); -    zoomPopupMenu->insertItem( i18n("Zoom Out (x 1/6)"),this, TQT_SLOT(setSettings(int)),0 ,25,25 ); -    zoomPopupMenu->insertItem( i18n("Zoom Out (x 1/12)"),this, TQT_SLOT(setSettings(int)),0 ,27,27 ); +    zoomPopupMenu->insertItem( i18n("Zoom to 100%"),this, TQ_SLOT(setSettings(int)),0 ,21,21 ); +    zoomPopupMenu->insertItem( i18n("Zoom to Fit"),this, TQ_SLOT(setSettings(int)),0 ,20,20 ); +    zoomPopupMenu->insertItem( i18n("Zoom In (x 2)"),this, TQ_SLOT(setSettings(int)),0 ,22,22 ); +    zoomPopupMenu->insertItem( i18n("Zoom In (x 6)"),this, TQ_SLOT(setSettings(int)),0 ,24,24 ); +    zoomPopupMenu->insertItem( i18n("Zoom In (x 12)"),this, TQ_SLOT(setSettings(int)),0 ,26,26 ); +    zoomPopupMenu->insertItem( i18n("Zoom Out (x 1/2)"),this, TQ_SLOT(setSettings(int)),0 ,23,23 ); +    zoomPopupMenu->insertItem( i18n("Zoom Out (x 1/6)"),this, TQ_SLOT(setSettings(int)),0 ,25,25 ); +    zoomPopupMenu->insertItem( i18n("Zoom Out (x 1/12)"),this, TQ_SLOT(setSettings(int)),0 ,27,27 );      scalePopupMenu = new TQPopupMenu(this);      myPopupMenu->insertItem (i18n("Scale"),scalePopupMenu, 2); -    scalePopupMenu->insertItem( i18n("Minute"),this, TQT_SLOT(setSettings(int)),0 ,1,1 ); -    scalePopupMenu->insertItem( i18n("Hour"),this, TQT_SLOT(setSettings(int)),0 ,2,2 ); -    scalePopupMenu->insertItem( i18n("Day"),this, TQT_SLOT(setSettings(int)),0 ,3,3 ); -    scalePopupMenu->insertItem( i18n("Week"),this, TQT_SLOT(setSettings(int)),0 ,4,4 ); -    scalePopupMenu->insertItem( i18n("Month"),this, TQT_SLOT(setSettings(int)),0 ,5,5 ); -    scalePopupMenu->insertItem( i18n("Auto"),this, TQT_SLOT(setSettings(int)),0 ,6,6 ); +    scalePopupMenu->insertItem( i18n("Minute"),this, TQ_SLOT(setSettings(int)),0 ,1,1 ); +    scalePopupMenu->insertItem( i18n("Hour"),this, TQ_SLOT(setSettings(int)),0 ,2,2 ); +    scalePopupMenu->insertItem( i18n("Day"),this, TQ_SLOT(setSettings(int)),0 ,3,3 ); +    scalePopupMenu->insertItem( i18n("Week"),this, TQ_SLOT(setSettings(int)),0 ,4,4 ); +    scalePopupMenu->insertItem( i18n("Month"),this, TQ_SLOT(setSettings(int)),0 ,5,5 ); +    scalePopupMenu->insertItem( i18n("Auto"),this, TQ_SLOT(setSettings(int)),0 ,6,6 );      scalePopupMenu->setCheckable ( true );      timePopupMenu = new TQPopupMenu(this);      myPopupMenu->insertItem (i18n("Time Format"),timePopupMenu, 3); -    timePopupMenu->insertItem( i18n("24 Hour"),this, TQT_SLOT(setSettings(int)),0 ,40,40 ); -    timePopupMenu->insertItem( i18n("12 PM Hour"),this, TQT_SLOT(setSettings(int)),0 ,41,41 ); -    timePopupMenu->insertItem( i18n("24:00 Hour"),this, TQT_SLOT(setSettings(int)),0 ,42,42 ); +    timePopupMenu->insertItem( i18n("24 Hour"),this, TQ_SLOT(setSettings(int)),0 ,40,40 ); +    timePopupMenu->insertItem( i18n("12 PM Hour"),this, TQ_SLOT(setSettings(int)),0 ,41,41 ); +    timePopupMenu->insertItem( i18n("24:00 Hour"),this, TQ_SLOT(setSettings(int)),0 ,42,42 );      yearPopupMenu = new TQPopupMenu(this);      myPopupMenu->insertItem (i18n("Year Format"),yearPopupMenu, 4); -    yearPopupMenu->insertItem( i18n("Four Digit"),this, TQT_SLOT(setSettings(int)),0 ,50,50 ); -    yearPopupMenu->insertItem( i18n("Two Digit"),this, TQT_SLOT(setSettings(int)),0 ,51,51 ); -    yearPopupMenu->insertItem( i18n("Two Digit Apostrophe"),this, TQT_SLOT(setSettings(int)),0 ,52,52 ); -    yearPopupMenu->insertItem( i18n("No Date on Minute/Hour Scale"),this, TQT_SLOT(setSettings(int)),0 ,53,53 ); +    yearPopupMenu->insertItem( i18n("Four Digit"),this, TQ_SLOT(setSettings(int)),0 ,50,50 ); +    yearPopupMenu->insertItem( i18n("Two Digit"),this, TQ_SLOT(setSettings(int)),0 ,51,51 ); +    yearPopupMenu->insertItem( i18n("Two Digit Apostrophe"),this, TQ_SLOT(setSettings(int)),0 ,52,52 ); +    yearPopupMenu->insertItem( i18n("No Date on Minute/Hour Scale"),this, TQ_SLOT(setSettings(int)),0 ,53,53 );      gridPopupMenu = new TQPopupMenu(this);      myPopupMenu->insertItem (i18n("Grid"),gridPopupMenu,5); -    gridPopupMenu->insertItem( i18n("Show Minor Grid"),this, TQT_SLOT(setSettings(int)),0 ,10,10 ); -    gridPopupMenu->insertItem( i18n("Show Major Grid"),this, TQT_SLOT(setSettings(int)),0 ,11,11 ); -    gridPopupMenu->insertItem( i18n("Show No Grid"),this, TQT_SLOT(setSettings(int)),0 ,12,12 ); -    myPopupMenu->insertItem( i18n("Print"),this, TQT_SLOT(setSettings(int)),0 ,30,30 ); -    connect(myPopupMenu, TQT_SIGNAL (  aboutToShow () ) , this, TQT_SLOT( preparePopupMenu() )) ; +    gridPopupMenu->insertItem( i18n("Show Minor Grid"),this, TQ_SLOT(setSettings(int)),0 ,10,10 ); +    gridPopupMenu->insertItem( i18n("Show Major Grid"),this, TQ_SLOT(setSettings(int)),0 ,11,11 ); +    gridPopupMenu->insertItem( i18n("Show No Grid"),this, TQ_SLOT(setSettings(int)),0 ,12,12 ); +    myPopupMenu->insertItem( i18n("Print"),this, TQ_SLOT(setSettings(int)),0 ,30,30 ); +    connect(myPopupMenu, TQ_SIGNAL (  aboutToShow () ) , this, TQ_SLOT( preparePopupMenu() )) ;      flagZoomToFit = false;      setShowMinorTicks( true );      myRealEnd =  myHorizonEnd; @@ -2714,7 +2714,7 @@ KDListView::KDListView(TQWidget* parent, KDGanttView* gantView):TQListView (pare      setDefaultRenameAction(TQListView::Accept);      setColumnWidthMode ( 0,Maximum  );      _calendarMode = false; -    // TQObject::connect(this, TQT_SIGNAL (  pressed ( TQListViewItem * )) , this, TQT_SLOT( dragItem( TQListViewItem *))) ; +    // TQObject::connect(this, TQ_SIGNAL (  pressed ( TQListViewItem * )) , this, TQ_SLOT( dragItem( TQListViewItem *))) ;  } @@ -3186,38 +3186,38 @@ KDGanttCanvasView::KDGanttCanvasView( KDGanttView* sender,TQCanvas* canvas, TQWi      TQPopupMenu * newMenu = new TQPopupMenu( this );      TQPopupMenu * onView = new TQPopupMenu( this );      onView->insertItem( i18n( "Summary" ), this, -                        TQT_SLOT ( newRootItem( int ) ), 0, 0 ); +                        TQ_SLOT ( newRootItem( int ) ), 0, 0 );      onView->insertItem( i18n( "Event" ), this, -                        TQT_SLOT ( newRootItem( int ) ), 0, 1); +                        TQ_SLOT ( newRootItem( int ) ), 0, 1);      onView->insertItem( i18n( "Task" ), this, -                        TQT_SLOT ( newRootItem( int ) ), 0, 2 ); +                        TQ_SLOT ( newRootItem( int ) ), 0, 2 );      onItem->insertItem( i18n( "New Root" ), onView );      newMenu->insertItem( i18n( "Summary" ), -                         this, TQT_SLOT ( newChildItem(  int) ), 0, 0 ); +                         this, TQ_SLOT ( newChildItem(  int) ), 0, 0 );      newMenu->insertItem( i18n( "Event" ), -                         this, TQT_SLOT ( newChildItem( int ) ), 0, 1 ); +                         this, TQ_SLOT ( newChildItem( int ) ), 0, 1 );      newMenu->insertItem( i18n( "Task" ), -                         this, TQT_SLOT ( newChildItem( int ) ), 0, 2 ); +                         this, TQ_SLOT ( newChildItem( int ) ), 0, 2 );      onItem->insertItem( i18n( "New Child" ), newMenu );      TQPopupMenu * afterMenu = new TQPopupMenu( this );      afterMenu->insertItem( i18n( "Summary" ), -                           this, TQT_SLOT ( newChildItem(  int) ), 0, 0+4 ); +                           this, TQ_SLOT ( newChildItem(  int) ), 0, 0+4 );      afterMenu->insertItem( i18n( "Event" ), -                           this, TQT_SLOT ( newChildItem( int ) ), 0, 1+4 ); +                           this, TQ_SLOT ( newChildItem( int ) ), 0, 1+4 );      afterMenu->insertItem( i18n( "Task" ), -                           this, TQT_SLOT ( newChildItem( int ) ), 0, 2+4 ); +                           this, TQ_SLOT ( newChildItem( int ) ), 0, 2+4 );      onItem->insertItem( i18n( "New After" ), afterMenu );      TQPopupMenu *pasteMenu = new TQPopupMenu( this );      pasteMenu->insertItem( i18n( "As Root" ), -                           this, TQT_SLOT ( pasteItem( int ) ), 0, 0 ); +                           this, TQ_SLOT ( pasteItem( int ) ), 0, 0 );      pasteMenu->insertItem( i18n( "As Child" ), -                           this, TQT_SLOT ( pasteItem( int ) ), 0, 1 ); +                           this, TQ_SLOT ( pasteItem( int ) ), 0, 1 );      pasteMenu->insertItem( i18n( "After" ), -                           this, TQT_SLOT ( pasteItem( int ) ), 0, 2 ); +                           this, TQ_SLOT ( pasteItem( int ) ), 0, 2 );      onItem->insertItem( i18n( "Paste" ), pasteMenu, 3 ); -    onItem->insertItem( i18n( "Cut Item" ), this, TQT_SLOT ( cutItem() ) ); +    onItem->insertItem( i18n( "Cut Item" ), this, TQ_SLOT ( cutItem() ) );      onItem->setItemEnabled( 3, false );      myMyContentsHeight = 0;      _showItemAddPopupMenu = false; @@ -3225,13 +3225,13 @@ KDGanttCanvasView::KDGanttCanvasView( KDGanttView* sender,TQCanvas* canvas, TQWi      TQObject *scrollViewTimer = child( "scrollview scrollbar timer", "TQTimer", false );      Q_ASSERT( scrollViewTimer );      if ( scrollViewTimer ) { -        disconnect( scrollViewTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(updateScrollBars() ) ); +        disconnect( scrollViewTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(updateScrollBars() ) );      }      // If they needed a scrollbar timer in scrollview... -    connect( &scrollBarTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(myUpdateScrollBars() ) ); +    connect( &scrollBarTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(myUpdateScrollBars() ) );      myScrollTimer = new TQTimer( this, "myScrollTimer" ); -    connect( myScrollTimer, TQT_SIGNAL( timeout() ), TQT_SLOT( slotScrollTimer() ) ); +    connect( myScrollTimer, TQ_SIGNAL( timeout() ), TQ_SLOT( slotScrollTimer() ) );      autoScrollEnabled = false;  } | 
