|
TheIDE and Ultimate++ File Types
File types recognized by TheIDE:
.cpp, .cc, .cxx, .c
|
Files with these extensions are recognized as source files by TheIDE C++ builders.
|
.h, .hpp
|
Header files. C++ builders provide automatic header dependency tests. U++ packages tend to use hpp instead of h in case that file contains template function definitions.
|
.icpp
|
This file type is recognized as .cpp source file, but unlike regular .cpp, which might be placed into the library first and eventually eliminated by linker, .icpp one is always linked as object file. This forces the file to be always linked. The rationale of this is that you can put module initialization code into .icpp that is linked into the executable even when code is not referenced from other files.
|
.rc
|
Windows resource files.
|
.lay
|
Layout files. Contain layouts of e.g. dialogs.
|
.iml
|
Image files. Contain icons and other raster images.
|
.t
|
Translation files containing translation of strings used in package to various languages.
|
.usc
|
Scripts and other meta-information. Contain widget descriptions for layout designer, including visual representation description using ESC scripts.
|
.upt
|
Project templates.
|
|
Other text files you might encounter in packages
.key
|
Re-definable keys definition file.
|
.i
|
These files are usually included by some .cpp file(s) for various purposes.
|
.sch
|
Database schema files. Contain definitions of database layouts. U++ database applications build database schema building scripts from these files and also use them to define structures and constants and variables needed for database interaction.
|
COPYING
|
This file usually contains license info for package.
|
COPYING-PLAIN
|
Contains license explanation.
|
AUTHORS
|
List of authors.
|
|
Other files and directories that you can encounter in package directories
.upp
|
Package definition file. Its name must be the same as name of package folder. It is normally managed by TheIDE's package organizer.
|
.tpp
|
Directories with this extension represent Topic++ group. Inside this directories are topic files with the same .tpp extension.
|
all.i
|
This file inside .tpp directories contains is Topic++ generated file for inclusion of topic group into C++.
|
.tdx
|
Pre-parsed tpp files for fast searching.
|
init
|
Used by BLITZ to properly include icpp files before the rest of the code.
|
.scd
|
Older format for spelling dictionaries, superseded by .udc
|
|
Files found in the installation root folder. You can backup or copy your configuration settings by copying the files in the installation folder.
theide.cfg
|
This is a binary file file takes its name from theide.exe or whatever the name of the executable is that runs the ide. It contains configuration settings which are a serialization of the Setup->Environment dialog.
|
.var
|
A text file that contains an assembly configuration as specified in the Assembly setup dialog.
|
.bm
|
A text file that contains the build settings associated with a particular compiler/ linker.
|
cfg folder
|
This folder holds cache files from theide (tdx,cache,pkg_cache) + cfg (per package settings - opened files, cursor positions etc.)
|
|
|