simonchen / atlx

A lightweight user interface library quickly building windows desktop app.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

atlx

这个项目暂停中! This project is paused.

A lightweight library that reconstruct the core of ATL, and provide some foundational classes like MFC(Microsoft Foundational Classes) make you easily manage User Interfaces such as Window, Dialog, View(and Scrollable View), other Limited kinds of control like Static box, Input box, Check box, Radio box, Button, Progress bar, Slider control, Hotkey control.

The aim IS to simplify the usage for save time to develop User Interfaces for windows desktop application. The aim is NOT to provide a complete development framework like Model-View-Controller mode.

The people who ever been familar with MFC/ATL/STL(Standard Template Library) will be more easily to use this library.

Fundational Window Classes

CWndThunker

The core that any Window class been derived from

CWndSuper

Super Window class derived from CWndThunker creates a basic Window, Subclass / Unsubclass Window functions are supplied also.

CDialogx

Create model / modeless dialog and processing generic events.

Utility Classes

String

String contains a couple of classes as follows, they all are Non thread-safe, No COW (Copy on write)

  • CString, CStringA, CStringW

They intend to be used in processing of TEXT string with terminating null.

  • string

This intends to be used in processing of SINGLE BYTE(CHAR)

Compilation environment

  • VisualStudio 2005 or higher version (2013,2015,2017)
  • Windows SDK
  • Multi-Byte(UTF-8) / Unicode charset
  • C Run-time secure

Targeting Platform

Windows XP or later version.

Code rules

  • No exception handler (such as Memory allocation failures)
  • No SAL (Source code annotation)
  • Naming rules are almost close to MFC

References

Another new thunk copy from ATL Authored by @Simonchen

About

A lightweight user interface library quickly building windows desktop app.


Languages

Language:C++ 99.6%Language:C 0.4%