• R/O
  • HTTP
  • SSH
  • HTTPS

Source Tree

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

A light-weight C++ object model framework Windows API Tool Kit


Nome Tamanho Rev. Hora Autor Mensagem de Log
.gitignore 95 0f77836 2013-08-19 19:07:08 Keith Marshall Do not track .orig files.
.hgignore 110 0f77836 2013-08-19 19:07:08 Keith Marshall Do not track .orig files.
.hgtags 48 8f0f565 2013-08-21 04:47:45 Keith Marshall Added tag r0.1.2 for changeset 3f7483...
ChangeLog 3.86 k 87535c0 2015-03-24 09:21:25 Keith Marshall Add a missing return statement.
Makefile.in 4.37 k 8e55ca7 2013-08-20 19:56:09 Keith Marshall Include README file in source distrib...
README 2.49 k 15b643c 2012-09-05 21:27:34 Keith Marshall Licence wording enhancements.
configure.ac 1.84 k 164d0ec 2013-08-21 04:47:11 Keith Marshall wtklite version 0.1.2 released.
dlgproc.cpp 2.8 k 8a62513 2013-08-19 23:56:08 Keith Marshall Add facility for control of child win...
errtext.cpp 2.25 k 15b643c 2012-09-05 21:27:34 Keith Marshall Licence wording enhancements.
sashctrl.cpp 10.07 k 87535c0 2015-03-24 09:21:25 Keith Marshall Add a missing return statement.
strres.cpp 3.1 k 7913ba4 2012-10-12 05:43:09 Keith Marshall Change package name from wtk/wtkplus ...
wndproc.cpp 5.39 k 1df0d3a 2013-07-12 17:41:30 Keith Marshall Add default handler for WM_CLOSE mess...
wtkalign.c 6.12 k 8a62513 2013-08-19 23:56:08 Keith Marshall Add facility for control of child win...
wtkalign.h 3.81 k 8a62513 2013-08-19 23:56:08 Keith Marshall Add facility for control of child win...
wtkbase.cpp 2.89 k 7913ba4 2012-10-12 05:43:09 Keith Marshall Change package name from wtk/wtkplus ...
wtkchild.cpp 2.57 k 7913ba4 2012-10-12 05:43:09 Keith Marshall Change package name from wtk/wtkplus ...
wtkdefs.h 2.4 k 07b8d6f 2013-08-19 21:40:03 Keith Marshall Add facility for activation of a runn...
wtkexcept.cpp 2.35 k 15b643c 2012-09-05 21:27:34 Keith Marshall Licence wording enhancements.
wtkexcept.h 3.28 k 7913ba4 2012-10-12 05:43:09 Keith Marshall Change package name from wtk/wtkplus ...
wtklite.h 11.46 k 564c241 2013-08-20 06:04:44 Keith Marshall Add simplified support for changing w...
wtkmain.cpp 2.41 k 7913ba4 2012-10-12 05:43:09 Keith Marshall Change package name from wtk/wtkplus ...
wtkraise.cpp 2.84 k 5f36e14 2015-03-23 23:07:41 Keith Marshall Consistently use local headers for pa...

README

README for MinGW Windows ToolKit
================================

$Id$

Written by Keith Marshall <keithmarshall@users.sourceforge.net>
Copyright (C) 2012, MinGW.org Project


Synopsis
--------

This package implements a minimal C++ class framework, encapsulating
the MS-Windows API.  It has been developed to facilitate implementation
of the GUI components of mingw-get; as such, it does not aim to provide
a fully featured API class framework, but rather, it is restricted to
providing only those features which are necessary for mingw-get.

It may be extended in the future, as the need arises.


Licence
-------

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:

The above copyright notice, this permission notice, and the following
disclaimer shall be included in all copies or substantial portions of
the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.


Building from a Source TarBall
------------------------------

This package is delivered in source format, suitable for building in
accordance with the standard GNU paradigm; building out-of-source, (or
in a subdirectory of the source tree), is recommended:--

  1) tar xf wtk-<version>-mingw32-src.tar.gz
  2) mkdir wtk-<version>/build
  3) cd wtk-<version>/build
  4) ../configure
  5) make
  6) make install


Building from SCM Repository
----------------------------

If the source code has been obtained from MinGW.org's git repository, it
will be necessary to also source the build-aux module from this repository,
and link, (or copy), the install-sh file into the top source directory of
the WTK tree.  Then, cd to the top of the WTK tree, and proceed:--

  1) autoconf
  2) mkdir build
  3) cd build
  4) ../configure
  5) make
  6) make install

$RCSfile$: end of file