Changeset f19df0a3e5 in tspsg for src
- Timestamp:
- Mar 3, 2010, 12:55:23 AM (15 years ago)
- Branches:
- 0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
- Children:
- e2abfd326f
- Parents:
- 162d5c5f94
- Location:
- src
- Files:
-
- 1 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
src/defaults.h
r162d5c5f94 rf19df0a3e5 1 1 /*! 2 2 * \file defaults.h 3 * \author Copyright (C)2007-2010 Lёppa <contacts[at]oleksii[dot]name>3 * \author Copyright © 2007-2010 Lёppa <contacts[at]oleksii[dot]name> 4 4 * 5 5 * $Id$ -
src/globals.h
r162d5c5f94 rf19df0a3e5 1 1 /*! 2 2 * \file globals.h 3 * \author Copyright (C)2007-2010 Lёppa <contacts[at]oleksii[dot]name>3 * \author Copyright © 2007-2010 Lёppa <contacts[at]oleksii[dot]name> 4 4 * 5 5 * $Id$ -
src/mainwindow.cpp
r162d5c5f94 rf19df0a3e5 380 380 #endif // Q_OS_WIN32 381 381 382 dlg->resize(4 80, 400);382 dlg->resize(450, 400); 383 383 dlg->exec(); 384 384 … … 890 890 { 891 891 #ifdef Q_OS_WIN32 892 tabWidget->setDocumentMode(enable); 892 893 QtWin::enableBlurBehindWindow(this, enable); 893 QtWin::enableBlurBehindWindow(tabWidget, enable);894 895 if (QtWin::enableBlurBehindWindow(tabTask, enable))896 tabTask->setAutoFillBackground(enable);897 if (QtWin::enableBlurBehindWindow(tabSolution, enable))898 tabSolution->setAutoFillBackground(enable);899 894 #else 900 895 Q_UNUSED(enable); -
src/os.h
r162d5c5f94 rf19df0a3e5 1 1 /*! 2 2 * \file os.h 3 * \author Copyright (C)2007-2010 Lёppa <contacts[at]oleksii[dot]name>3 * \author Copyright © 2007-2010 Lёppa <contacts[at]oleksii[dot]name> 4 4 * 5 5 * $Id$ … … 62 62 * \def OSID 63 63 * \brief The target operating system ID. 64 * 64 * 65 65 * This value is used in task file metadata. 66 66 */ -
src/qtwin.h
r162d5c5f94 rf19df0a3e5 1 /* ***************************************************************************2 ** 3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). 4 ** 5 ** Use, modification and distribution is allowed without limitation, 6 ** warranty, liability or support of any kind. 7 ** 8 ****************************************************************************/1 /*! 2 * \file qtwin.h 3 * 4 * \author Copyright © 2009 Nokia Corporation and/or its subsidiary(-ies). 5 * 6 * Use, modification and distribution is allowed without limitation, 7 * warranty, liability or support of any kind. 8 */ 9 9 10 10 #ifndef QTWIN_H … … 13 13 #include <QColor> 14 14 #include <QWidget> 15 /**16 * This is a helper class for using the Desktop Window Manager17 * functionality on Windows 7 and Windows Vista. On other platforms18 * these functions will simply not do anything.19 */20 15 21 16 class WindowNotifier; 22 17 18 /*! 19 * This is a helper class for using the Desktop Window Manager 20 * functionality on Windows 7 and Windows Vista. On other platforms 21 * these functions will simply not do anything. 22 */ 23 23 class QtWin 24 24 { -
src/resource.h
r162d5c5f94 rf19df0a3e5 1 1 /*! 2 2 * \file resource.h 3 * \author Copyright (C)2007-2010 Lёppa <contacts[at]oleksii[dot]name>3 * \author Copyright © 2007-2010 Lёppa <contacts[at]oleksii[dot]name> 4 4 * 5 5 * $Id$ … … 9 9 * 10 10 * <b>TSPSG: TSP Solver and Generator</b> 11 * 11 * 12 12 * This file is part of TSPSG. 13 13 * -
src/version.h
r162d5c5f94 rf19df0a3e5 1 1 /*! 2 2 * \file version.h 3 * \author Copyright (C)2007-2010 Lёppa <contacts[at]oleksii[dot]name>3 * \author Copyright © 2007-2010 Lёppa <contacts[at]oleksii[dot]name> 4 4 * 5 5 * $Id$ … … 29 29 * \image html tspsg.png 30 30 * <b>TSPSG: TSP Solver and Generator</b> 31 * \author Copyright (C)2007-2010 Lёppa <contacts[at]oleksii[dot]name>31 * \author Copyright © 2007-2010 Lёppa <contacts[at]oleksii[dot]name> 32 32 * 33 * $Id$ 34 * $URL$ 33 * \b Homepage: <a href="http://tspsg.sourceforge.net/">tspsg.sourceforge.net</a> 35 34 * 36 35 * TSPSG is free software: you can redistribute it and/or modify … … 51 50 #define VERSION_H 52 51 53 //! TSPSG version ID 54 //#define VERSIONID "$Id$" 55 //! Major version of current TSPSG build 56 //#define BUILD_VERSION_MAJOR 0 57 //! Minor version of current TSPSG build 58 //#define BUILD_VERSION_MINOR 1 52 #ifndef BUILD_VERSION_MAJOR 53 //! Major version of current TSPSG build 54 #define BUILD_VERSION_MAJOR 0 55 #endif // BUILD_VERSION_MAJOR 56 #ifndef BUILD_VERSION_MINOR 57 //! Minor version of current TSPSG build 58 #define BUILD_VERSION_MINOR 0 59 #endif // BUILD_VERSION_MINOR 59 60 /*! 60 61 * \brief TSPSG release number … … 66 67 * - 11 -- x: <b>release</b> 1 to x-10 67 68 */ 68 //#define BUILD_RELEASE 2 69 #ifndef BUILD_RELEASE 70 #define BUILD_RELEASE 0 71 #endif // BUILD_RELEASE 69 72 70 73 /*! … … 73 76 * This will only change on releases and will be the same as revision number. 74 77 */ 75 //#define BUILD_NUMBER 65535 78 #ifndef BUILD_NUMBER 79 #define BUILD_NUMBER 0 80 #endif // BUILD_NUMBER 76 81 77 82 /*! … … 83 88 #ifndef TSPSG_RELEASE_BUILD 84 89 #define BUILD_STATUS (dev build) 85 #else 86 #if BUILD_RELEASE < 4 87 #define BUILD_STATUS (alpha) 88 #elif BUILD_RELEASE < 8 89 #define BUILD_STATUS (beta) 90 #elif BUILD_RELEASE < 11 91 #define BUILD_STATUS (rc) 92 // #else 93 // #define BUILD_STATUS 94 #endif 90 #elif BUILD_RELEASE < 4 91 #define BUILD_STATUS (alpha) 92 #elif BUILD_RELEASE < 8 93 #define BUILD_STATUS (beta) 94 #elif BUILD_RELEASE < 11 95 #define BUILD_STATUS (rc) 95 96 #endif // TSPSG_RELEASE_BUILD 96 97 … … 102 103 /*! 103 104 * \def BUILD_VERSION 104 * \brief Full version of TSPSG in the form: \c major. \c minor.\c release.\c build [\c status].105 * \brief Full version of TSPSG in the form: \c major.minor.release.build [\c status]. 105 106 */ 106 107 #ifndef BUILD_STATUS
Note: See TracChangeset
for help on using the changeset viewer.