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
|
/*
* Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved.
*
* 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; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#ifndef _DB_SQL_EDITOR_LOG_BE_H_
#define _DB_SQL_EDITOR_LOG_BE_H_
#include "workbench/wb_backend_public_interface.h"
#include "sqlide/var_grid_model_be.h"
#include <boost/shared_ptr.hpp>
#include "mforms/menu.h"
class SqlEditorForm;
class MYSQLWBBACKEND_PUBLIC_FUNC DbSqlEditorLog : public VarGridModel
{
public:
enum MessageType {
ErrorMsg,
WarningMsg,
NoteMsg,
OKMsg,
EditMsg,
BusyMsg
};
typedef boost::shared_ptr<DbSqlEditorLog> Ref;
virtual ~DbSqlEditorLog() {}
static Ref create(SqlEditorForm *owner, bec::GRTManager *grtm, int max_entry_count)
{ return Ref(new DbSqlEditorLog(owner, grtm, max_entry_count)); }
virtual void reset();
virtual void refresh();
virtual bec::IconId get_field_icon(const bec::NodeId &node, ColumnId column, bec::IconSize size);
virtual bool get_field(const bec::NodeId &node, ColumnId column, std::string &value);
virtual bool get_field(const bec::NodeId &node, ColumnId column, ssize_t &value) { return VarGridModel::get_field(node, column, value); }
virtual bool get_field_description(const bec::NodeId &node, ColumnId column, std::string &value);
std::string get_selection_text(bool time, bool query, bool result, bool duration);
RowId add_message(int msg_type, const std::string &context, const std::string &msg, const std::string &duration);
void set_message(RowId row, int msg_type, const std::string &context, const std::string &msg, const std::string &duration);
mforms::Menu* get_context_menu();
void set_selection(const std::vector<int> &selection);
protected:
// max_entry_count < 0 means unlimited number of messages.
DbSqlEditorLog(SqlEditorForm *owner, bec::GRTManager *grtm, int max_entry_count);
void add_message_with_id(RowId id, const std::string &time, int msg_type, const std::string &context,
const std::string &msg, const std::string &duration);
private:
SqlEditorForm *_owner;
mforms::Menu _context_menu;
std::vector<int> _selection;
int _max_entry_count; // For the internal list which is used in the UI.
std::string _log_file_name; // For the action log file.
unsigned _next_id;
void handle_context_menu(const std::string &action);
};
#endif /* _DB_SQL_EDITOR_LOG_BE_H_ */
|