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.
152 lines
3.9 KiB
152 lines
3.9 KiB
//
|
|
// C++ Interface: kileviewmanager
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: Jeroen Wijnhout <Jeroen.Wijnhout@kdemail.net>, (C) 2004
|
|
// Michel Ludwig <michel.ludwig@kdemail.net>, (C) 2006
|
|
//
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef KILEVIEWKILEVIEWMANAGER_H
|
|
#define KILEVIEWKILEVIEWMANAGER_H
|
|
|
|
#include <tqobject.h>
|
|
#include <tqwidgetstack.h>
|
|
|
|
#include <ktabwidget.h>
|
|
|
|
class TQPixmap;
|
|
|
|
class KURL;
|
|
class KXMLGUIClient;
|
|
|
|
class KileInfo;
|
|
class KileEventFilter;
|
|
class KileProjectView;
|
|
|
|
namespace Kate {
|
|
class Document;
|
|
class View;
|
|
}
|
|
|
|
namespace KileDocument {
|
|
class Info;
|
|
class TextInfo;
|
|
}
|
|
|
|
namespace KileView
|
|
{
|
|
|
|
//TODO inherit from KParts::Manager
|
|
class Manager : public TQObject
|
|
{
|
|
TQ_OBJECT
|
|
|
|
|
|
public:
|
|
Manager(KileInfo *ki, TQObject *parent = 0, const char *name = 0);
|
|
|
|
~Manager();
|
|
|
|
public:
|
|
void setClient(TQObject *receiver, KXMLGUIClient *client);
|
|
|
|
Kate::View* currentTextView() const;
|
|
TQPtrList<Kate::View>& textViews() {return m_textViewList;}
|
|
Kate::View* textView(int i) { return m_textViewList.at(i); }
|
|
Kate::View* textView(KileDocument::TextInfo *info);
|
|
int getIndexOf(Kate::View* view) const;
|
|
unsigned int getTabCount() const;
|
|
|
|
void createTabs(TQWidget *);
|
|
Kate::View* createTextView(KileDocument::TextInfo *info, int index = -1);
|
|
KTabWidget* tabs() { return m_tabs; }
|
|
|
|
void unplugKatePartMenu(Kate::View* view);
|
|
|
|
// void setProjectView(KileProjectView *view) { m_projectview = view; }
|
|
// KileProjectView *projectView() { return m_projectview; } commented out by tbraun, better use signal/slot stuff
|
|
|
|
public slots:
|
|
Kate::View* switchToTextView(const KURL & url, bool requestFocus = false);
|
|
|
|
void closeWidget(TQWidget *);
|
|
void removeView(Kate::View *view);
|
|
|
|
void setTabLabel(TQWidget *view, const TQString & name) { m_tabs->setTabLabel(view, name); }
|
|
void changeTab(TQWidget *view, const TQPixmap & icon, const TQString & name) { m_tabs->changeTab(view, icon, name); }
|
|
|
|
void updateStructure(bool parse = false, KileDocument::Info *docinfo = 0L);
|
|
|
|
void gotoNextView();
|
|
void gotoPrevView();
|
|
|
|
void reflectDocumentStatus(Kate::Document*, bool, unsigned char);
|
|
|
|
void onKatePopupMenuRequest(void);
|
|
void convertSelectionToLaTeX(void);
|
|
void pasteAsLaTeX(void);
|
|
void quickPreviewPopup();
|
|
|
|
protected slots:
|
|
void testCanDecodeURLs(const TQDragMoveEvent *e, bool &accept);
|
|
void replaceLoadedURL(TQWidget *w, TQDropEvent *e);
|
|
|
|
/**
|
|
*
|
|
**/
|
|
void urlChanged(KileDocument::Info* info, const KURL& url);
|
|
|
|
signals:
|
|
void activateView(TQWidget *, bool);
|
|
void prepareForPart(const TQString &);
|
|
void startQuickPreview(int);
|
|
|
|
private:
|
|
KileInfo *m_ki;
|
|
Kate::View *m_activeTextView;
|
|
// KileProjectView *m_projectview;
|
|
TQPtrList<Kate::View> m_textViewList;
|
|
KTabWidget *m_tabs;
|
|
TQObject *m_receiver;
|
|
KXMLGUIClient *m_client;
|
|
TQWidgetStack *m_widgetStack;
|
|
TQWidget *m_emptyDropWidget;
|
|
|
|
};
|
|
|
|
/**
|
|
* Little helper widget to overcome the limitation that KTabWidget doesn't honour drop events when
|
|
* there are no tabs: the DropWidget is shown instead of KTabWidget when there are no tabs.
|
|
*/
|
|
class DropWidget : public TQWidget {
|
|
TQ_OBJECT
|
|
|
|
|
|
public:
|
|
DropWidget(TQWidget * parent = 0, const char * name = 0, WFlags f = 0);
|
|
virtual ~DropWidget();
|
|
|
|
virtual void dragMoveEvent(TQDragMoveEvent *e);
|
|
|
|
virtual void dropEvent(TQDropEvent *e);
|
|
|
|
signals:
|
|
void testCanDecode(const TQDragMoveEvent *, bool &);
|
|
void receivedDropEvent(TQDropEvent *);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|