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 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// sysSettings.h - Settings handling class
//
//////////////////////////////////////////////////////////////////////////
#ifndef SYSSETTINGS_H
#define SYSSETTINGS_H
#include "utils/sysLogger.h"
// wxWindows headers
#include <wx/wx.h>
#include <wx/config.h>
#include <wx/fileconf.h>
// Class declarations
class sysSettings : private wxConfig
{
public:
sysSettings(const wxString &name);
// Display options
bool GetDisplayOption(const wxString &objtype, bool GetDefault = false);
void SetDisplayOption(const wxString &objtype, bool display);
void FlushChanges()
{
wxConfig::Flush();
}
// Log
wxString GetLogFile();
void SetLogFile(const wxString &newval)
{
Write(wxT("LogFile"), newval);
sysLogger::logFile = newval;
}
int GetLogLevel() const
{
int i;
Read(wxT("LogLevel"), &i, LOG_ERRORS);
return i;
}
void SetLogLevel(const int newval)
{
WriteInt(wxT("LogLevel"), newval);
sysLogger::logLevel = newval;
}
// Last connection
wxString GetLastDescription() const
{
wxString s;
Read(wxT("LastDescription"), &s, wxT("PostgreSQL Server"));
return s;
}
void SetLastDescription(const wxString &newval)
{
Write(wxT("LastDescription"), newval);
}
wxString GetLastServer() const
{
wxString s;
Read(wxT("LastServer"), &s, wxT("localhost"));
return s;
}
void SetLastServer(const wxString &newval)
{
Write(wxT("LastServer"), newval);
}
wxString GetLastDatabase() const
{
wxString s;
Read(wxT("LastDatabase"), &s, wxT("postgres"));
return s;
}
void SetLastDatabase(const wxString &newval)
{
Write(wxT("LastDatabase"), newval);
}
wxString GetLastUsername() const
{
wxString s;
Read(wxT("LastUsername"), &s, wxT("postgres"));
return s;
}
void SetLastUsername(const wxString &newval)
{
Write(wxT("LastUsername"), newval);
}
int GetLastPort() const
{
int i;
Read(wxT("LastPort"), &i, 5432);
return i;
}
void SetLastPort(const int newval)
{
WriteInt(wxT("LastPort"), newval);
}
int GetLastSSL() const
{
int i;
Read(wxT("LastSSL"), &i, 0);
return i;
}
void SetLastSSL(const int newval)
{
WriteInt(wxT("LastSSL"), newval);
}
// Helper paths
wxString GetSlonyPath() const
{
wxString s;
Read(wxT("SlonyPath"), &s, wxEmptyString);
return s;
}
void SetSlonyPath(const wxString &newval)
{
Write(wxT("SlonyPath"), newval);
}
wxString GetPostgresqlPath() const
{
wxString s;
Read(wxT("PostgreSQLPath"), &s, wxEmptyString);
return s;
}
void SetPostgresqlPath(const wxString &newval)
{
Write(wxT("PostgreSQLPath"), newval);
}
wxString GetEnterprisedbPath() const
{
wxString s;
Read(wxT("EnterpriseDBPath"), &s, wxEmptyString);
return s;
}
void SetEnterprisedbPath(const wxString &newval)
{
Write(wxT("EnterpriseDBPath"), newval);
}
wxString GetGPDBPath() const
{
wxString s;
Read(wxT("GreenplumDBPath"), &s, wxEmptyString);
return s;
}
void SetGPDBPath(const wxString &newval)
{
Write(wxT("GreenplumDBPath"), newval);
}
// Help paths
wxString GetSlonyHelpPath();
void SetSlonyHelpPath(const wxString &newval)
{
Write(wxT("SlonyHelpPath"), newval);
}
wxString GetPgHelpPath();
void SetPgHelpPath(const wxString &newval)
{
Write(wxT("PostgreSQLHelpPath"), newval);
}
wxString GetEdbHelpPath();
void SetEdbHelpPath(const wxString &newval)
{
Write(wxT("EnterpriseDBHelpPath"), newval);
}
wxString GetGpHelpPath();
void SetGpHelpPath(const wxString &newval)
{
Write(wxT("GreenplumDBHelpPath"), newval);
}
// Copy options
wxString GetCopyQuoteChar() const
{
wxString s;
Read(wxT("Copy/QuoteChar"), &s, wxT("\""));
return s;
}
void SetCopyQuoteChar(const wxString &newval)
{
Write(wxT("Copy/QuoteChar"), newval);
}
wxString GetCopyColSeparator() const
{
wxString s;
Read(wxT("Copy/ColSeparator"), &s, wxT(";"));
return s;
}
void SetCopyColSeparator(const wxString &newval)
{
Write(wxT("Copy/ColSeparator"), newval);
}
int GetCopyQuoting(); // 0=none 1=string 2=all
void SetCopyQuoting(const int i);
// Export options
wxString GetExportQuoteChar() const
{
wxString s;
Read(wxT("Export/QuoteChar"), &s, wxT("\""));
return s;
}
void SetExportQuoteChar(const wxString &newval)
{
Write(wxT("Export/QuoteChar"), newval);
}
wxString GetExportColSeparator() const
{
wxString s;
Read(wxT("Export/ColSeparator"), &s, wxT(";"));
return s;
}
void SetExportColSeparator(const wxString &newval)
{
Write(wxT("Export/ColSeparator"), newval);
}
wxString GetExportRowSeparator();
void SetExportRowSeparator(const wxString &s);
int GetExportQuoting(); // 0=none 1=string 2=all
void SetExportQuoting(const int i);
bool GetExportUnicode() const
{
bool b;
Read(wxT("Export/Unicode"), &b, true);
return b;
}
void SetExportUnicode(const bool newval)
{
WriteBool(wxT("Export/Unicode"), newval);
}
bool GetWriteBOM() const
{
bool b;
Read(wxT("Export/WriteBOM"), &b, true);
return b;
}
void SetWriteBOM(const bool newval)
{
WriteBool(wxT("Export/WriteBOM"), newval);
}
// Explain options
bool GetExplainVerbose() const
{
bool b;
Read(wxT("frmQuery/ExplainVerbose"), &b, false);
return b;
}
void SetExplainVerbose(const bool newval)
{
WriteBool(wxT("frmQuery/ExplainVerbose"), newval);
}
bool GetExplainCosts() const
{
bool b;
Read(wxT("frmQuery/ExplainCosts"), &b, true);
return b;
}
void SetExplainCosts(const bool newval)
{
WriteBool(wxT("frmQuery/ExplainCosts"), newval);
}
bool GetExplainBuffers() const
{
bool b;
Read(wxT("frmQuery/ExplainBuffers"), &b, false);
return b;
}
void SetExplainBuffers(const bool newval)
{
WriteBool(wxT("frmQuery/ExplainBuffers"), newval);
}
bool GetExplainTiming() const
{
bool b;
Read(wxT("frmQuery/ExplainTiming"), &b, true);
return b;
}
void SetExplainTiming(const bool newval)
{
WriteBool(wxT("frmQuery/ExplainTiming"), newval);
}
// Display options
wxString GetSystemSchemas() const
{
wxString s;
Read(wxT("SystemSchemas"), &s, wxEmptyString);
return s;
}
void SetSystemSchemas(const wxString &newval)
{
Write(wxT("SystemSchemas"), newval);
}
bool GetShowUsersForPrivileges() const
{
bool b;
Read(wxT("ShowUsersForPrivileges"), &b, false);
return b;
}
void SetShowUsersForPrivileges(const bool newval)
{
WriteBool(wxT("ShowUsersForPrivileges"), newval);
}
bool GetShowSystemObjects() const
{
bool b;
Read(wxT("ShowSystemObjects"), &b, false);
return b;
}
void SetShowSystemObjects(const bool newval)
{
WriteBool(wxT("ShowSystemObjects"), newval);
}
// Editor options
bool GetSpacesForTabs() const
{
bool b;
Read(wxT("SpacesForTabs"), &b, false);
return b;
}
void SetSpacesForTabs(const bool newval)
{
WriteBool(wxT("SpacesForTabs"), newval);
}
long GetIndentSpaces() const
{
long l;
Read(wxT("IndentSpaces"), &l, 0L);
return l;
}
void SetIndentSpaces(const long newval)
{
WriteLong(wxT("IndentSpaces"), newval);
}
bool GetIndicateNull() const
{
bool b;
Read(wxT("frmQuery/IndicateNull"), &b, false);
return b;
}
void SetIndicateNull(const bool newval)
{
WriteBool(wxT("frmQuery/IndicateNull"), newval);
}
wxString GetThousandsSeparator() const
{
wxString s;
Read(wxT("frmQuery/ThousandsSeparator"), &s, wxEmptyString);
return s;
}
void SetThousandsSeparator(const wxString &newval)
{
Write(wxT("frmQuery/ThousandsSeparator"), newval);
}
bool GetAutoRollback() const
{
bool b;
Read(wxT("frmQuery/AutoRollback"), &b, true);
return b;
}
void SetAutoRollback(const bool newval)
{
WriteBool(wxT("frmQuery/AutoRollback"), newval);
}
wxString GetDecimalMark() const
{
wxString s;
Read(wxT("DecimalMark"), &s, wxEmptyString);
return s;
}
void SetDecimalMark(const wxString &newval)
{
Write(wxT("DecimalMark"), newval);
}
bool GetColumnNames() const
{
bool b;
Read(wxT("ColumnNames"), &b, false);
return b;
}
void SetColumnNames(const bool newval)
{
WriteBool(wxT("ColumnNames"), newval);
}
bool GetLineNumber() const
{
bool b;
Read(wxT("ShowLineNumber"), &b, false);
return b;
}
void SetLineNumber(const bool newval)
{
WriteBool(wxT("ShowLineNumber"), newval);
}
bool GetUnicodeFile() const
{
bool b;
Read(wxT("WriteUnicodeFile"), &b, true);
return b;
}
void SetUnicodeFile(const bool newval)
{
WriteBool(wxT("WriteUnicodeFile"), newval);
}
wxFont GetSystemFont();
void SetSystemFont(const wxFont &font);
wxFont GetSQLFont();
void SetSQLFont(const wxFont &font);
wxFont GetDDFont();
void SetDDFont(const wxFont &font);
int GetLineEndingType() const
{
int i;
Read(wxT("LineEndingType"), &i, 2);
return i;
}
void SetLineEndingType(const int newval)
{
WriteInt(wxT("LineEndingType"), newval);
}
wxString GetFavouritesFile();
void SetFavouritesFile(const wxString &newval)
{
Write(wxT("FavouritesFile"), newval);
}
wxString GetMacrosFile();
void SetMacrosFile(const wxString &newval)
{
Write(wxT("MacrosFile"), newval);
}
wxString GetHistoryFile();
void SetHistoryFile(const wxString &newval)
{
Write(wxT("History/File"), newval);
}
long GetHistoryMaxQueries() const
{
long l;
Read(wxT("History/MaxQueries"), &l, 10L);
return l;
}
void SetHistoryMaxQueries(const long newval)
{
WriteLong(wxT("History/MaxQueries"), newval);
}
long GetHistoryMaxQuerySize() const
{
long l;
Read(wxT("History/MaxQuerySize"), &l, 1024L);
return l;
}
void SetHistoryMaxQuerySize(const long newval)
{
WriteLong(wxT("History/MaxQuerySize"), newval);
}
// Custom Colours options
wxString GetCustomColour(int index) const
{
wxString s;
Read(wxT("CustomColour") + NumToStr((long) index), &s, wxT("#ffffff"));
return s;
}
void SetCustomColour(int index, const wxString &newval)
{
Write(wxT("CustomColour") + NumToStr((long) index), newval);
}
// Status Colours options
wxString GetIdleProcessColour() const
{
wxString s;
Read(wxT("IdleProcessColour"), &s, wxT("#5fa4d9"));
return s;
}
void SetIdleProcessColour(const wxString &newval)
{
Write(wxT("IdleProcessColour"), newval);
}
wxString GetActiveProcessColour() const
{
wxString s;
Read(wxT("ActiveProcessColour"), &s, wxT("#5fd95f"));
return s;
}
void SetActiveProcessColour(const wxString &newval)
{
Write(wxT("ActiveProcessColour"), newval);
}
wxString GetSlowProcessColour() const
{
wxString s;
Read(wxT("SlowProcessColour"), &s, wxT("#d9a75f"));
return s;
}
void SetSlowProcessColour(const wxString &newval)
{
Write(wxT("SlowProcessColour"), newval);
}
wxString GetBlockedProcessColour() const
{
wxString s;
Read(wxT("BlockedProcessColour"), &s, wxT("#d96e5f"));
return s;
}
void SetBlockedProcessColour(const wxString &newval)
{
Write(wxT("BlockedProcessColour"), newval);
}
// SQL Editor Colours options
bool GetSQLBoxUseSystemBackground() const
{
bool b;
Read(wxT("ctlSQLBox/UseSystemBackground"), &b, true);
return b;
}
void SetSQLBoxUseSystemBackground(const bool newval)
{
WriteBool(wxT("ctlSQLBox/UseSystemBackground"), newval);
}
bool GetSQLBoxUseSystemForeground() const
{
bool b;
Read(wxT("ctlSQLBox/UseSystemForeground"), &b, true);
return b;
}
void SetSQLBoxUseSystemForeground(const bool newval)
{
WriteBool(wxT("ctlSQLBox/UseSystemForeground"), newval);
}
wxString GetSQLBoxColourBackground() const
{
wxString s;
Read(wxT("ctlSQLBox/ColourBackground"), &s, wxT("#ffffff"));
return s;
}
void SetSQLBoxColourBackground(const wxString &newval)
{
Write(wxT("ctlSQLBox/ColourBackground"), newval);
}
wxString GetSQLBoxColourForeground() const
{
wxString s;
Read(wxT("ctlSQLBox/ColourForeground"), &s, wxT("#000000"));
return s;
}
void SetSQLBoxColourForeground(const wxString &newval)
{
Write(wxT("ctlSQLBox/ColourForeground"), newval);
}
wxString GetSQLColourCaret() const
{
wxString s;
Read(wxT("ctlSQLBox/ColourCaret"), &s, wxT("#000000"));
return s;
}
void SetSQLColourCaret(const wxString &newval)
{
Write(wxT("ctlSQLBox/ColourCaret"), newval);
}
wxString GetSQLBoxColour(int index) const
{
wxString s;
Read(wxString::Format(wxT("ctlSQLBox/Colour%i"), index), &s, getDefaultElementColor(index));
return s;
}
void SetSQLBoxColour(int index, const wxString &newval)
{
Write(wxString::Format(wxT("ctlSQLBox/Colour%i"), index), newval);
}
wxString GetSQLMarginBackgroundColour() const
{
wxString s;
Read(wxT("ctlSQLBox/MarginBackgroundColour"), &s, wxT("#dddddd"));
return s;
}
void SetSQLMarginBackgroundColour(const wxString &newval)
{
Write(wxT("ctlSQLBox/MarginBackgroundColour"), newval);
}
bool GetSQLKeywordsInUppercase() const
{
bool b;
Read(wxT("KeywordsInUppercase"), &b, false);
return b;
}
void SetSQLKeywordsInUppercase(const bool newval)
{
WriteBool(wxT("KeywordsInUppercase"), newval);
}
// Misc options
long GetAutoRowCountThreshold() const
{
long l;
Read(wxT("AutoRowCount"), &l, 2000L);
return l;
}
void SetAutoRowCountThreshold(const long newval)
{
WriteLong(wxT("AutoRowCount"), newval);
}
bool GetStickySql() const
{
bool b;
Read(wxT("StickySql"), &b, false);
return b;
}
void SetStickySql(const bool newval)
{
WriteBool(wxT("StickySql"), newval);
}
bool GetDoubleClickProperties() const
{
bool b;
Read(wxT("DoubleClickProperties"), &b, false);
return b;
}
void SetDoubleClickProperties(const bool newval)
{
WriteBool(wxT("DoubleClickProperties"), newval);
}
long GetMaxServerLogSize() const
{
long l;
Read(wxT("MaxServerLogSize"), &l, 100000L);
return l;
}
void SetMaxServerLogSize(const long newval)
{
WriteLong(wxT("MaxServerLogSize"), newval);
}
bool GetSuppressGuruHints() const
{
bool b;
Read(wxT("SuppressGuruHints"), &b, false);
return b;
}
void SetSuppressGuruHints(const bool newval)
{
WriteBool(wxT("SuppressGuruHints"), newval);
}
long GetMaxRows() const
{
long l;
Read(wxT("frmQuery/MaxRows"), &l, 100L);
return l;
}
void SetMaxRows(const long newval)
{
WriteLong(wxT("frmQuery/MaxRows"), newval);
}
long GetMaxColSize() const
{
long l;
Read(wxT("frmQuery/MaxColSize"), &l, 256L);
return l;
}
void SetMaxColSize(const long newval)
{
WriteLong(wxT("frmQuery/MaxColSize"), newval);
}
bool GetAskSaveConfirmation() const
{
bool b;
Read(wxT("AskSaveConfirmation"), &b, true);
return b;
}
void SetAskSaveConfirmation(const bool newval)
{
WriteBool(wxT("AskSaveConfirmation"), newval);
}
bool GetConfirmDelete() const
{
bool b;
Read(wxT("ConfirmDelete"), &b, true);
return b;
}
void SetConfirmDelete(const bool newval)
{
WriteBool(wxT("ConfirmDelete"), newval);
}
wxString GetCanonicalLanguageName();
wxLanguage GetCanonicalLanguage() const
{
int i;
Read(wxT("LanguageId"), &i, wxLANGUAGE_UNKNOWN);
return (wxLanguage)i;
}
void SetCanonicalLanguage(const wxLanguage &lang);
bool GetIgnoreVersion() const
{
bool b;
Read(wxT("IgnoreVersion"), &b, false);
return b;
}
void SetIgnoreVersion(const bool newval)
{
WriteBool(wxT("IgnoreVersion"), newval);
}
int GetRefreshOnClick() const
{
int i;
Read(wxT("RefreshOnClick"), &i, 0);
return i;
}
void SetRefreshOnClick(const int newval)
{
WriteInt(wxT("RefreshOnClick"), newval);
}
bool GetShowNotices() const
{
bool b;
Read(wxT("ShowNotices"), &b, false);
return b;
}
void SetShowNotices(const bool newval)
{
WriteBool(wxT("ShowNotices"), newval);
}
wxString GetOptionsLastTreeItem() const
{
wxString s;
Read(wxT("OptionsLastTreeItem"), &s, wxEmptyString);
return s;
}
void SetOptionsLastTreeItem(const wxString &newval)
{
Write(wxT("OptionsLastTreeItem"), newval);
}
// Functions for storing settings
bool Write(const wxString &key, const wxString &value)
{
return wxConfig::Write(key, value);
}
bool WriteLong(const wxString &key, long value)
{
return wxConfig::Write(key, value);
}
bool WriteInt(const wxString &key, int value)
{
return wxConfig::Write(key, value);
}
bool WriteBool(const wxString &key, bool value);
bool WritePoint(const wxString &key, const wxPoint &value);
bool WriteSize(const wxString &key, const wxSize &value);
bool WriteSizePoint(const wxString &key, const wxSize &size, const wxPoint &point)
{
WritePoint(key, point);
WriteSize(key, size);
return true;
}
// Functions for reading settings
bool Read(const wxString &key, wxString *str, const wxString &defaultVal) const;
bool Read(const wxString &key, bool *str, bool defaultVal) const;
bool Read(const wxString &key, int *i, int defaultVal) const;
bool Read(const wxString &key, long *l, long defaultVal) const;
wxString Read(const wxString &key, const wxString &defaultVal) const;
long Read(const wxString &key, long defaultVal) const;
wxPoint Read(const wxString &key, const wxPoint &defaultVal) const;
wxSize Read(const wxString &key, const wxSize &defaultVal) const;
enum configFileName
{
PGPASS
};
static wxString GetConfigFile(configFileName cfgname);
private:
static const wxString &getDefaultElementColor(int index)
{
static const wxString colors[] =
{
wxT("#808080"), wxT("#007f00"), wxT("#007f00"), wxT("#7f7f7f"),
wxT("#007f7f"), wxT("#00007f"), wxT("#7f007f"), wxT("#7f007f"),
wxT("#007f7f"), wxT("#7f7f7f"), wxT("#000000"), wxT("#000000")
};
return colors[index];
}
bool moveStringValue(const wxChar *oldKey, const wxChar *newKey, int index = -1);
bool moveLongValue(const wxChar *oldKey, const wxChar *newKey, int index = -1);
wxFileConfig *defaultSettings;
};
#endif
|