[go: up one dir, main page]

Menu

[r301]: / messages.cpp  Maximize  Restore  History

Download this file

198 lines (159 with data), 6.8 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/* Marcion
Copyright (C) 2009 - 2011 Milan Konvicka
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; version 2 of the License.
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 */
#include <stdio.h>
#include "messages.h"
//
CMessages * _m_msg(0);
void set_m_msg(CMessages * m){_m_msg=m;}
CMessages * m_msg(){return _m_msg;}
//
CMessages::CMessages( QLabel *const label,
//QLabel *const libLabel,
QLabel *const iLabel,
QMainWindow * const mainw,
CSettings const * const settings,
QComboBox ** const crumpg,
QSystemTrayIcon * const tri,
CLibSearchBase & libsearch,
CLibBase & libwdg,
QWidget * parent, Qt::WFlags f)
: QWidget(parent, f),
label(label),/*libLabel(libLabel),*/iLabel(iLabel),
mainw(mainw),
_settings(settings),
_crumpg(crumpg),
tri(tri),
libsearch(libsearch),
libwdg(libwdg),
msg_disabled(false),
last_error()
{
setupUi(this);
clear();
}
//
void CMessages::MsgOk()
{
OSTREAM << "OK.\n";
OSTREAM.flush();
txtErrs->appendPlain("OK.");
label->setText(tr("status: OK"));
QApplication::processEvents();
}
void CMessages::MsgErr(QString const & Msg)
{
OSTREAM << Msg << "\n";
OSTREAM.flush();
txtErrs->appendPlain(Msg+"\nERROR.");
label->setText(tr("status: Error"));
label->setToolTip(tr("last error: ")+Msg);
last_error=Msg;
QMessageBox(QMessageBox::Critical,"Error",Msg,QMessageBox::Close,0).exec();
QApplication::processEvents();
}
void CMessages::MsgMsg(QString const & Msg, bool sbar)
{
if(!msg_disabled)
{
OSTREAM << Msg << "\n";
OSTREAM.flush();
txtErrs->appendPlain(Msg);
if(sbar)
mainw->statusBar()->showMessage(Msg,20000);
QApplication::processEvents();
}
}
void CMessages::MsgWarn(QString const & Msg) const
{
OSTREAM << Msg << "\n";
OSTREAM.flush();
txtErrs->appendPlain(Msg);
label->setText(tr("Warning."));
QMessageBox(QMessageBox::Warning,tr("Warning"),Msg,QMessageBox::Close,0).exec();
QApplication::processEvents();
}
void CMessages::MsgInf(QString const & Msg,QWidget * parent) const
{
OSTREAM << Msg << "\n";
OSTREAM.flush();
txtErrs->appendPlain(Msg);
QMessageBox(QMessageBox::Information,tr("Information"),Msg,QMessageBox::Close,parent).exec();
mainw->statusBar()->showMessage(Msg,20000);
QApplication::processEvents();
}
CSettings const & CMessages::settings() const
{
return *_settings;
}
/*void CMessages::repaintMainW()
{
if(!mainw->isMinimized())
mainw->update();
}*/
QString CMessages::version() const
{
return QString(QCoreApplication::applicationName()+" "+QCoreApplication::applicationVersion());
}
CLibSearchBase & CMessages::libSearchWidget() const
{
return libsearch;
}
CLibBase & CMessages::libWidget() const
{
return libwdg;
}
void CMessages::clear() const
{
txtErrs->clear();
OSTREAM << QString(version()+tr("\nCopyright (c) 2009-2011 Milan Konvicka. All rights reserved.\nThis software comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to modify and redistribute it under the GPL v2 license.\n\n"));
OSTREAM.flush();
txtErrs->insertHtml(QString("<b><big>"+version()+tr("</big></b><br>Copyright &copy; 2009-2011 Milan Konvicka. All rights reserved.<br>This software comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to modify and redistribute it under the GPL v2 license.<br><br>")));
}
void CMessages::printHelp() const
{
QString h;
/*h.append(QObject::tr("<br>Copyright (c) 2009-2011 Milan Konvicka. All rights reserved.<br>This software comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to modify and redistribute it under the GPL v2 license.<br><br>"));*/
h.append(QObject::tr("<p>usage: marcion [OPTIONS]</p>"));
h.append(QObject::tr("<dl><lh>options:</lh>"));
h.append("<dt>--standalone-server, -s");
h.append(QObject::tr("<dd>connected is standalone mysql server (local or remote) instead embedded"));
h.append("<dt>--mysql-server-opts, -e");
h.append(QObject::tr("<dd>following arguments [arg1] [arg2] [arg3] ... [argN] are passed into embedded mysql server. using of it clears all internal options of server. (this argument should be used as last of all others arguments)"));
h.append(QObject::tr("<dt>--connect=comma separated list of values"));
h.append(QObject::tr("<dd>comma separated list of values used for connection to server. (order: host,user,password,database,port)"));
h.append("<dt>--test, -t");
h.append(QObject::tr("<dd>test of server and connection"));
h.append("<dt>--show-global-vars, -g");
h.append(QObject::tr("<dd>shows global variables obtained from running MySql server"));
h.append("<dt>--show-session-vars, -i");
h.append(QObject::tr("<dd>shows session variables obtained from running MySql server"));
h.append("<dt>--like=string");
h.append(QObject::tr("<dd>sets filter for list of global and/or session variables invoked by -g and/or -i"));
h.append("<dt>--rm-config, -r");
h.append(QObject::tr("<dd>removes configuration files 'config.txt' and 'config-defaults.txt' (if exists) before start"));
h.append("<dt>--version, -V");
h.append(QObject::tr("<dd>version"));
h.append("<dt>--help, -h");
h.append(QObject::tr("<dd>this help</dl>"));
h.append(QObject::tr("<br><ul><lh>Notes:</lh><li>options -s and -e cannot be used together<li>if you are using -e, then use it as last parameter. all parameters following -e are passed to mysql server<li>-t can be used together with -s, -e, --connect</ul>"));
h.append(QObject::tr("for more informations look at http://marcion.sourceforge.net/doc.html<br><br>"));
txtErrs->insertHtml(h);
txtErrs->goToBottom();
}
void CMessages::printVersion() const
{
txtErrs->insertHtml("<br>"+QCoreApplication::applicationName()+" "+QCoreApplication::applicationVersion()+"<br>");
txtErrs->insertHtml(tr("Qt version: ")+QString(QT_VERSION_STR)+"<br>");
txtErrs->insertHtml(tr("MySql client: ")+QString(mysql_get_client_info())+"<br>");
txtErrs->insertHtml(tr("MySql server: ")+QString(mysql_get_server_info(CMySql::m_init))+"<br>");
txtErrs->goToBottom();
}