add files for correct compile

This commit is contained in:
levinsv 2020-07-07 21:44:28 +05:00
parent 1db59fe65e
commit 0315ab6d4c
7 changed files with 3431 additions and 0 deletions

BIN
ex_pscan.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

1264
ex_pscan.pngc Normal file

File diff suppressed because it is too large Load diff

2047
pgAdmin3.cpp Normal file

File diff suppressed because it is too large Load diff

15
pgAdmin3.layout Normal file
View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<CodeBlocks_layout_file>
<FileVersion major="1" minor="0" />
<ActiveTarget name="Debug (3.0) Win32" />
<File name="ui\dlgAggregate.xrc" open="0" top="0" tabpos="0" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
<Cursor>
<Cursor1 position="371" topLine="0" />
</Cursor>
</File>
<File name="pgAdmin3.rc" open="0" top="0" tabpos="0" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
<Cursor>
<Cursor1 position="401" topLine="26" />
</Cursor>
</File>
</CodeBlocks_layout_file>

56
pgAdmin3.rc Normal file
View file

@ -0,0 +1,56 @@
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// pgAdmin3.rc - win32 Resources
//
//////////////////////////////////////////////////////////////////////////
#if defined(_WIN32_WCE)
#undef _WIN32_WCE
#endif
#include <wx/msw/wx.rc>
#include <winver.h>
#include "include/version.h"
#include "include/copyright.h"
// Icon (Don't remove the aaa prefix - it makes it the default icon!)
aaaPGADMIN3 ICON DISCARDABLE "include/images/pgAdmin3.ico"
SQL ICON DISCARDABLE "include/images/sql.ico"
VS_VERSION_INFO VERSIONINFO
FILEVERSION VERSION_NUM
PRODUCTVERSION VERSION_NUM
FILEFLAGSMASK VER_DEBUG|VER_PRERELEASE
FILEFLAGS VER_DEBUG|VER_PRERELEASE
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "FileVersion", VERSION_STR, "\0"
VALUE "File Version", VERSION_STR, "\0"
VALUE "FileDescription", "pgAdmin III - PostgreSQL Tools", "\0"
VALUE "LegalCopyright", COPYRIGHT_WIN32, "\0"
VALUE "LegalTrademarks", LICENSE, "\0"
VALUE "InternalName", "pgadmin3", "\0"
VALUE "OriginalFilename","pgadmin3.exe", "\0"
VALUE "ProductName", "pgAdmin III", "\0"
VALUE "ProductVersion", VERSION_STR, "\0"
#ifdef BUILD
VALUE "Build", BUILD, "\0"
#endif
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x0409, 0x04E4
END
END

18
precomp.cpp Normal file
View file

@ -0,0 +1,18 @@
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// precomp.cpp - precompiled header
//
//////////////////////////////////////////////////////////////////////////
#ifdef WIN32
#define WIN32_LEAN_AND_MEAN
#endif
#include <wx/wxprec.h>
#include "pgAdmin3.h"

31
settings.ini Normal file
View file

@ -0,0 +1,31 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; pgAdmin III - PostgreSQL Tools
;
; Copyright (C) 2002 - 2016, The pgAdmin Development Team
; This software is released under the PostgreSQL Licence
;
; settings.ini
;
; This file, if present, specifies the default configuration settings that
; pgAdmin will use if the user doesn't have a value already stored in their
; preferences file (or the registry on Windows). If a value is not present in
; this file, a hard-coded default is used.
;
; This file should be located alongside pgAdmin3.exe on Windows, and in the
; program data directory (normally called 'share') on Unix/OSX platforms.
;
; Use the familiar .ini file format, with settings paths in section names if
; required, eg.
;
; LogFile=/tmp/pgadmin3.log
;
; [Servers]
; Count=99
;
; [Servers/1]
; Server=127.0.0.1
; Description=Development
; Port=5432
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;