summaryrefslogtreecommitdiffstats
path: root/dbaccess/source/ui/inc
diff options
context:
space:
mode:
authorPhil Hart <html.wallah@gmail.com>2012-06-29 11:00:59 +0800
committerAndras Timar <atimar@suse.com>2012-07-01 12:53:10 +0200
commit10a7bcdf97c7634922626a2d858539a2f8bb0f7b (patch)
treed678d08bbfc814203de5646df8c15adfea6852bf /dbaccess/source/ui/inc
parentdon't build oox::drawingml::TextListStyle::dump by default (diff)
downloadcore-10a7bcdf97c7634922626a2d858539a2f8bb0f7b.tar.gz
core-10a7bcdf97c7634922626a2d858539a2f8bb0f7b.zip
fdo#51497 Show output from SELECT statements in Execute SQL dialog.
These changes allow the user to optionally display the output from SQL SELECT statements in the "Execute SQL Statement" dialog. Change-Id: I9209a9e3b5ed100a88fa467078deb9f38c571d42
Diffstat (limited to 'dbaccess/source/ui/inc')
-rw-r--r--dbaccess/source/ui/inc/directsql.hxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/dbaccess/source/ui/inc/directsql.hxx b/dbaccess/source/ui/inc/directsql.hxx
index e37335fadef9..73258413b52e 100644
--- a/dbaccess/source/ui/inc/directsql.hxx
+++ b/dbaccess/source/ui/inc/directsql.hxx
@@ -33,6 +33,8 @@
#include "moduledbu.hxx"
#include <osl/mutex.hxx>
+#include <svtools/editbrowsebox.hxx>
+
//........................................................................
namespace dbaui
{
@@ -57,6 +59,9 @@ namespace dbaui
ListBox* m_pSQLHistory;
FixedLine m_aStatusFrame;
MultiLineEdit m_aStatus;
+ CheckBox* m_pShowOutput;
+ FixedLine m_aOutputFrame;
+ MultiLineEdit m_aOutput;
FixedLine m_aButtonSeparator;
HelpButton m_aHelp;
PushButton m_aClose;
@@ -106,6 +111,9 @@ namespace dbaui
/// adds a status text to the status list
void addStatusText(const String& _rMessage);
+ /// adds a status text to the output list
+ void addOutputText(const String& _rMessage);
+
#ifdef DBG_UTIL
const sal_Char* impl_CheckInvariants() const;
#endif