updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / texmaker-nowebkit / browser.h
blob1b26a6664141178fa990bcc3db1f745847010610
1 /***************************************************************************
2 * copyright : (C) 2003-2010 by Pascal Brachet *
3 * http://www.xm1math.net/texmaker/ *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 ***************************************************************************/
12 #ifndef BROWSER_H
13 #define BROWSER_H
15 #include <QMainWindow>
17 class Browser : public QMainWindow
19 Q_OBJECT
20 public:
21 Browser( const QString home, QWidget* parent = 0, Qt::WFlags flags = 0);
22 ~Browser();
24 protected slots:
25 void adjustTitle();
26 void setProgress(int p);
27 void finishLoading(bool);
28 private slots:
29 void Index();
30 void Print();
31 void Find();
34 #endif