mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
Добавлена команда (hotkey F9) отключение/включение автоматически всплывающих подсказок для лога сервера. По умолчанию подсказки отключены. Описание команды храниться в JSON в разделе LogNavigatePanel. Добавляется после первого открытия окна лога сервера.
104 lines
3.2 KiB
C++
104 lines
3.2 KiB
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin III - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// ctlListView.h - enhanced listview control
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef CTLLISTVIEW_H
|
|
#define CTLLISTVIEW_H
|
|
|
|
// wxWindows headers
|
|
#include <wx/wx.h>
|
|
#include <wx/listctrl.h>
|
|
#include "utils/misc.h"
|
|
|
|
class frmMain;
|
|
|
|
class ctlListView : public wxListView
|
|
{
|
|
private:
|
|
void OnSortGrid(wxListEvent& event);
|
|
/// <summary>
|
|
/// Sort list event or program
|
|
/// </summary>
|
|
/// <param name="colsort"></param>
|
|
/// <param name="resort"></param>
|
|
void SortGrid(int colsort, bool isevent);
|
|
bool nosort; // если кто то пользуется SetItemData то не будем сортировать такие ctlListView
|
|
bool autohint=false;
|
|
int order, prev_col;
|
|
// будем сохранять длинные строки 0 колонки в этом массиве
|
|
bool storelongstring = false;
|
|
std::vector<wxString> longstring;
|
|
public:
|
|
bool SetItemData(long item, long data) {
|
|
nosort = true;
|
|
return wxListView::SetItemData(item, data);
|
|
}
|
|
bool ReSort();
|
|
bool IsNumberColumn(const wxString& columnlabel);
|
|
void SetModeStoreLongString() { storelongstring = true; }
|
|
bool ToggleAutoHint() { autohint=!autohint; return autohint;};
|
|
bool GetAutoHint() {return autohint;};
|
|
bool DeleteAllItemsWithLong() {
|
|
longstring.clear();
|
|
return wxListView::DeleteAllItems();
|
|
}
|
|
ctlListView(wxWindow* p, int id, wxPoint pos, wxSize siz, long attr = 0);
|
|
long GetSelection();
|
|
wxString GetText(long row, long col = 0);
|
|
wxString GetTextLong(long row, long col = 0);
|
|
void CreateColumns(wxImageList* images, const wxString& left, const wxString& right, int leftSize = 60);
|
|
void CreateColumns(wxImageList* images, const wxString& str1, const wxString& str2, const wxString& str3, int leftSize = 60);
|
|
|
|
void AddColumn(const wxString& text, int size = wxLIST_AUTOSIZE_USEHEADER, int format = wxLIST_FORMAT_LEFT);
|
|
long AppendItemLong(int icon, const wxString& val, const wxString& val2 = wxString(), const wxString& val3 = wxString(), const wxString& val4 = wxString());
|
|
|
|
long AppendItem(int icon, const wxString& val, const wxString& val2 = wxString(), const wxString& val3 = wxString(), const wxString& val4 = wxString());
|
|
long AppendItem(const wxString& val, const wxString& val2 = wxString(), const wxString& val3 = wxString())
|
|
{
|
|
return AppendItem(PGICON_PROPERTY, val, val2, val3);
|
|
}
|
|
void AppendItem(const wxString& str, long l)
|
|
{
|
|
AppendItem(str, NumToStr(l));
|
|
}
|
|
void AppendItem(const wxString& str, double d)
|
|
{
|
|
AppendItem(str, NumToStr(d));
|
|
}
|
|
void AppendItem(const wxString& str, OID o)
|
|
{
|
|
AppendItem(str, NumToStr(o));
|
|
}
|
|
void AppendItem(const wxString& str, const wxDateTime& d)
|
|
{
|
|
AppendItem(str, DateToStr(d));
|
|
}
|
|
void AppendItem(const wxString& str, const wxLongLong& l)
|
|
{
|
|
AppendItem(str, l.ToString());
|
|
}
|
|
void AppendItem(const wxString& str, const wxULongLong& l)
|
|
{
|
|
AppendItem(str, l.ToString());
|
|
}
|
|
void AppendYesNoItem(const wxString& str, bool b)
|
|
{
|
|
AppendItem(str, BoolToYesNo(b));
|
|
}
|
|
|
|
void DeleteCurrentItem()
|
|
{
|
|
DeleteItem(GetSelection());
|
|
}
|
|
|
|
};
|
|
|
|
|
|
#endif
|