summaryrefslogtreecommitdiffstats
path: root/kword/KWInsertPicDia.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
commit8362bf63dea22bbf6736609b0f49c152f975eb63 (patch)
tree0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kword/KWInsertPicDia.h
downloadkoffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz
koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kword/KWInsertPicDia.h')
-rw-r--r--kword/KWInsertPicDia.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/kword/KWInsertPicDia.h b/kword/KWInsertPicDia.h
new file mode 100644
index 00000000..b7e949b4
--- /dev/null
+++ b/kword/KWInsertPicDia.h
@@ -0,0 +1,62 @@
+/* This file is part of the KDE project
+ Copyright (C) 2001 David Faure <[email protected]>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library 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
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public License
+ along with this library; see the file COPYING.LIB. If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+*/
+
+#ifndef kwinsertpicdia_h
+#define kwinsertpicdia_h
+
+#include <kdialogbase.h>
+class QCheckBox;
+class KWInsertPicPreview;
+class KFileDialog;
+class KWDocument;
+
+class KWInsertPicDia : public KDialogBase
+{
+ Q_OBJECT
+public:
+ KWInsertPicDia( QWidget *parent, bool _inline, bool _keepRatio, KWDocument *_doc, const char *name = 0 );
+
+ bool makeInline() const;
+
+ bool keepRatio() const;
+
+ /**
+ * @param _path the name of the old file
+ * @return the loaded picture (Picture is null if cancelled.)
+ */
+ static KoPicture selectPictureDia( const QString & _path, QWidget* parent );
+
+ KoPicture picture ( void ) const;
+
+protected slots:
+ void slotChooseImage();
+
+protected:
+ static KoPicture selectPicture( KFileDialog & fd, QWidget *parent );
+
+private:
+
+ bool m_bFirst;
+ QCheckBox *m_cbInline, *m_cbKeepRatio;
+ KWInsertPicPreview *m_preview;
+ KWDocument *m_doc;
+ KoPicture m_picture;
+};
+
+#endif