~ubuntu-branches/ubuntu/lucid/kdebase/lucid

« back to all changes in this revision

Viewing changes to konqueror/konq_tabs.h

  • Committer: Bazaar Package Importer
  • Author(s): Ana Beatriz Guerrero Lopez
  • Date: 2009-04-05 05:22:13 UTC
  • mfrom: (0.4.2 experimental) (0.2.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 235.
  • Revision ID: james.westby@ubuntu.com-20090405052213-39thr4l6p2ss07uj
Tags: 4:4.2.2-1
* New upstream release:
  - khtml fixes. (Closes: #290285, #359680)
  - Default konsole sessions can be deleted. (Closes: #286342)
  - Tag widget uses standard application palette. (Closes: #444800)
  - ... and surely many more but we have lost track...

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  This file is part of the KDE project
2
 
 
3
 
    Copyright (C) 2002-2003 Konqueror Developers
4
 
                  2002-2003 Douglas Hanley <douglash@caltech.edu>
5
 
 
6
 
    This program is free software; you can redistribute it and/or modify
7
 
    it under the terms of the GNU General Public License as published by
8
 
    the Free Software Foundation; either version 2 of the License, or
9
 
    (at your option) any later version.
10
 
 
11
 
    This program is distributed in the hope that it will be useful,
12
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
    GNU General Public License for more details.
15
 
 
16
 
    You should have received a copy of the GNU General Public License
17
 
    along with this program; if not, write to the Free Software
18
 
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 
    MA  02110-1301, USA.
20
 
*/
21
 
 
22
 
#ifndef __konq_tabs_h__
23
 
#define __konq_tabs_h__
24
 
 
25
 
#include "konq_frame.h"
26
 
 
27
 
#include <ktabwidget.h>
28
 
 
29
 
class QPixmap;
30
 
class QPopupMenu;
31
 
class QToolButton;
32
 
 
33
 
class KonqView;
34
 
class KonqViewManager;
35
 
class KonqFrameBase;
36
 
class KonqFrame;
37
 
class KonqFrameContainerBase;
38
 
class KonqFrameContainer;
39
 
class KConfig;
40
 
class KSeparator;
41
 
class KProgress;
42
 
class KAction;
43
 
 
44
 
class KonqFrameTabs : public KTabWidget, public KonqFrameContainerBase
45
 
{
46
 
  Q_OBJECT
47
 
  friend class KonqFrame; //for emitting ctrlTabPressed() only, aleXXX
48
 
 
49
 
public:
50
 
  KonqFrameTabs(QWidget* parent, KonqFrameContainerBase* parentContainer,
51
 
                KonqViewManager* viewManager, const char * name = 0);
52
 
  virtual ~KonqFrameTabs();
53
 
 
54
 
  virtual void listViews( ChildViewList *viewList );
55
 
 
56
 
  virtual void saveConfig( KConfig* config, const QString &prefix, bool saveURLs,
57
 
                           KonqFrameBase* docContainer, int id = 0, int depth = 0 );
58
 
  virtual void copyHistory( KonqFrameBase *other );
59
 
 
60
 
  virtual void printFrameInfo( const QString& spaces );
61
 
 
62
 
  QPtrList<KonqFrameBase>* childFrameList() { return m_pChildFrameList; }
63
 
 
64
 
  virtual void setTitle( const QString &title, QWidget* sender );
65
 
  virtual void setTabIcon( const KURL &url, QWidget* sender );
66
 
 
67
 
  virtual QWidget* widget() { return this; }
68
 
  virtual QCString frameType() { return QCString("Tabs"); }
69
 
 
70
 
  void activateChild();
71
 
 
72
 
  /**
73
 
   * Call this after inserting a new frame into the splitter.
74
 
   */
75
 
  void insertChildFrame( KonqFrameBase * frame, int index = -1);
76
 
 
77
 
  /**
78
 
   * Call this before deleting one of our children.
79
 
   */
80
 
  void removeChildFrame( KonqFrameBase * frame );
81
 
 
82
 
  //inherited
83
 
  virtual void reparentFrame(QWidget * parent,
84
 
                             const QPoint & p, bool showIt=FALSE );
85
 
 
86
 
  void moveTabBackward(int index);
87
 
  void moveTabForward(int index);
88
 
 
89
 
 
90
 
public slots:
91
 
  void slotCurrentChanged( QWidget* newPage );
92
 
  void setAlwaysTabbedMode( bool );
93
 
 
94
 
signals:
95
 
  void ctrlTabPressed();
96
 
  void removeTabPopup();
97
 
 
98
 
protected:
99
 
  void refreshSubPopupMenuTab();
100
 
  void hideTabBar();
101
 
 
102
 
  QPtrList<KonqFrameBase>* m_pChildFrameList;
103
 
 
104
 
private slots:
105
 
  void slotContextMenu( const QPoint& );
106
 
  void slotContextMenu( QWidget*, const QPoint& );
107
 
  void slotCloseRequest( QWidget* );
108
 
  void slotMovedTab( int, int );
109
 
  void slotMouseMiddleClick();
110
 
  void slotMouseMiddleClick( QWidget* );
111
 
 
112
 
  void slotTestCanDecode(const QDragMoveEvent *e, bool &accept /* result */);
113
 
  void slotReceivedDropEvent( QDropEvent* );
114
 
  void slotInitiateDrag( QWidget * );
115
 
  void slotReceivedDropEvent( QWidget *, QDropEvent * );
116
 
  void slotSubPopupMenuTabActivated( int );
117
 
 
118
 
private:
119
 
  KonqViewManager* m_pViewManager;
120
 
  QPopupMenu* m_pPopupMenu;
121
 
  QPopupMenu* m_pSubPopupMenuTab;
122
 
  QToolButton* m_rightWidget;
123
 
  QToolButton* m_leftWidget;
124
 
  bool m_permanentCloseButtons;
125
 
  bool m_alwaysTabBar;
126
 
  bool m_MouseMiddleClickClosesTab;
127
 
  int m_closeOtherTabsId;
128
 
};
129
 
 
130
 
#endif