Mercurial > hg > octave-nkf
view libgui/src/qtinfo/webinfo.h @ 15196:017f0b2e6933
rename gui directory to libgu
* libgui: Rename from gui.
* .hgsub (libgui/qterminal): Rename from gui/qterminal.
* Makefile.am (GUIDIR): Set to libgui instead of gui if
AMCOND_BUILD_GUI is true.
* configure.ac (AC_CONFIG_FILES): Update list for directory renaming.
* Makefile.am (.NOTPARALLEL): Delete.
List octave.html/index.html as the primary HTML target, not
octave.html.
(octave.html): New target for making the octave.html directory.
(octave.pdf): Depend on octave.dvi.
* images.awk: In generated rules for png files, depend on octave.html,
not octave.html/index.html.
* src/Makefile.am (OCTAVE_GUI_CPPFLAGS, OCTAVE_GUI_LIBS): Update for
directory renaming.
(CLEANFILES): Fix typo.
* fntests.m (src_tree): Use libinterp, not src.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sat, 18 Aug 2012 18:10:09 -0400 |
parents | gui/src/qtinfo/webinfo.h@48ae6a7c69c1 |
children | fd27e10b9b05 |
line wrap: on
line source
/* Copyright (C) 2009 P.L. Lucas * Copyright (C) 2012 Jacob Dawid <jacob.dawid@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., 59 Temple Place, Suite 330, * Boston, MA 02111-1307, USA. */ #include <QTextBrowser> #include "parser.h" #include <QStackedWidget> #include <QTabBar> #include <QPushButton> #include <QLineEdit> #include <QCheckBox> #include <QToolButton> class webinfo : public QWidget { Q_OBJECT public: webinfo (QWidget *parent = 0); void set_info_path (QString info_path); void load_node (QString node_name); public slots: void link_clicked (const QUrl &link); void current_tab_changed (int index); void close_tab (); void search (); void zoom_in (); void zoom_out (); private: QTextBrowser *_text_browser; QTabBar *_tab_bar; QStackedWidget *_stacked_widget; QPushButton *_close_tab_button; QLineEdit *_search_line_edit; QCheckBox *_search_check_box; QToolButton *_zoom_in_button; QToolButton *_zoom_out_button; parser _parser; QFont _font_web; QTextBrowser *addNewTab (QString name); void closeTab(int index); };