You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

201 lines
6.3 KiB

/*
This file is part of the Konsole Terminal.
Copyright 2006-2008 Robert Knight <robertknight@gmail.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
*/
#ifndef VIEWCONTAINER_H
#define VIEWCONTAINER_H
// Qt
#include <QObject>
#include <QPointer>
#include <QHash>
#include <QList>
#include <QTabWidget>
#include <QTabBar>
// Konsole
#include "Profile.h"
// Qt
class QPoint;
class QToolButton;
class QMenu;
class QDropEvent;
namespace Konsole {
class IncrementalSearchBar;
class ViewProperties;
class ViewManager;
class TabbedViewContainer;
/**
* An interface for container widgets which can hold one or more views.
*
* The container widget typically displays a list of the views which
* it has and provides a means of switching between them.
*
* Subclasses should reimplement the addViewWidget() and removeViewWidget() functions
* to actually add or remove view widgets from the container widget, as well
* as updating any navigation aids.
*/
class TabbedViewContainer : public QTabWidget
{
Q_OBJECT
public:
/**
* Constructs a new view container with the specified parent.
*
* @param position The initial position of the navigation widget
* @param parent The parent object of the container
*/
TabbedViewContainer(ViewManager *connectedViewManager, QWidget *parent);
/**
* Called when the ViewContainer is destroyed. When reimplementing this in
* subclasses, use object->deleteLater() to delete any widgets or other objects
* instead of 'delete object'.
*/
~TabbedViewContainer() Q_DECL_OVERRIDE;
/** Adds a new view to the container widget */
void addView(QWidget *view, ViewProperties *navigationItem, int index = -1);
/** Removes a view from the container */
void removeView(QWidget *view);
/** Returns the ViewProperties instance associated with a particular view in the container */
ViewProperties *viewProperties(QWidget *view) const;
void setTabActivity(int index, bool activity);
void updateTitle(ViewProperties *item);
void updateIcon(ViewProperties *item);
void updateActivity(ViewProperties *item);
/** Changes the active view to the next view */
void activateNextView();
/** Changes the active view to the previous view */
void activatePreviousView();
/** Changes the active view to the last view */
void activateLastView();
void setCssFromFile(const QUrl& url);
/**
* This enum describes the directions
* in which views can be re-arranged within the container
* using the moveActiveView() method.
*/
enum MoveDirection {
/** Moves the view to the left. */
MoveViewLeft,
/** Moves the view to the right. */
MoveViewRight
};
/**
* Moves the active view within the container and
* updates the order in which the views are shown
* in the container's navigation widget.
*
* The default implementation does nothing.
*/
void moveActiveView(MoveDirection direction);
/** Sets the menu to be shown when the new view button is clicked.
* Only valid if the QuickNewView feature is enabled.
* The default implementation does nothing. */
// TODO: Reenable this later.
// void setNewViewMenu(QMenu *menu);
void renameTab(int index);
ViewManager *connectedViewManager();
void currentTabChanged(int index);
void closeCurrentTab();
void wheelScrolled(int delta);
void tabDoubleClicked(int index);
void openTabContextMenu(const QPoint &point);
Q_SIGNALS:
/** Emitted when the container has no more children */
void empty(TabbedViewContainer *container);
/** Emitted when the user requests to open a new view */
void newViewRequest();
/** Requests creation of a new view, with the selected profile. */
void newViewRequest(Profile::Ptr);
/**
* Emitted when the user requests to move a view from another container
* into this container. If 'success' is set to true by a connected slot
* then the original view will be removed.
*
* @param index Index at which to insert the new view in the container or -1
* to append it. This index should be passed to addView() when the new view
* has been created.
* @param id The identifier of the view.
* @param success The slot handling this signal should set this to true if the
* new view was successfully created.
* @param sourceContainer Initial move event Tabbed view container.
*/
void moveViewRequest(int index, int id, bool &success, TabbedViewContainer *sourceContainer);
/** Emitted when the active view changes */
void activeViewChanged(QWidget *view);
/** Emitted when a view is added to the container. */
void viewAdded(QWidget *view, ViewProperties *properties);
/** Emitted when a view is removed from the container. */
void viewRemoved(QWidget *view);
protected:
/** Returns the widgets which are associated with a particular navigation item */
QList<QWidget *> widgetsForItem(ViewProperties *item) const;
/**
* Rearranges the order of widgets in the container.
*
* @param fromIndex Current index of the widget to move
* @param toIndex New index for the widget
*/
void moveViewWidget(int fromIndex, int toIndex);
// close tabs and unregister
void closeTerminalTab(int index);
private Q_SLOTS:
void viewDestroyed(QObject *view);
void konsoleConfigChanged();
private:
void forgetView(QWidget *view);
QHash<QWidget *, ViewProperties *> _navigation;
ViewManager *_connectedViewManager;
QMenu *_contextPopupMenu;
QToolButton *_newTabButton;
};
}
#endif //VIEWCONTAINER_H