Click here to Skip to main content
15,896,154 members
Articles / Web Development / HTML

EvaLayout, Lay It Be!

Rate me:
Please Sign up or sign in to vote.
4.93/5 (58 votes)
23 May 2017CPOL7 min read 188.7K   4.3K   114  
An efficient and flexible layout manager
/*
Eva library C++ (www.elxala.de)
Copyright (C) 2005  Alejandro Xalabarder Aulet

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

// Copyright (c) 2006 Alejandro Xalabarder
//
#define IDI_EVALAYOUT               1
#define IDC_MYICON                  2
#define IDD_DIALOG_MAIN           101
#define IDD_DEMO_DIALOG           102
#define IDD_ABOUTBOX              103
#define IDS_APP_TITLE             103
#define IDM_ABOUT                 104
#define IDM_EXIT                  105
#define IDC_DEMO                  109
#define IDR_MAINFRAME             128
#define IDM_OTRO                  131


#define ID_EDIT_1                 1016
#define ID_EDIT_2                 1017
#define ID_EDIT_3                 1018

#define ID_BUTTON_1       1020
#define ID_BUTTON_2       1021
#define ID_BUTTON_3       1022
#define ID_BUTTON_4       1023

#define ID_LABEL_1        1050
#define ID_LABEL_2        1051
#define ID_LABEL_3        1052
#define ID_LABEL_4        1053

#define ID_LIST           1060
#define ID_MEMO           1061
#define ID_COMBO          1062


#define IDC_STATIC          -1

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Germany Germany
I have a Telecomunications Engineering degree but since I learnt the first language (Pascal), almost I haven't stopped developing software. Mainly with C and C++ but I have touched many other languages and scripts. I use also to develop for fun (reinventing the wheel, of course!), currently almost all of such programs and tools are written in java (visit www.elxala.de).

Comments and Discussions