Migrated repository
Go to file
2023-09-14 19:01:28 +08:00
apps fix cmakelists.txt 2023-09-06 19:02:45 +08:00
cmake make visual studio compiler happy in window 2023-09-14 18:41:42 +08:00
docs update readme and screenshots 2022-07-06 09:58:05 +08:00
scripts add animattion support for Progressbar::setProgress 2023-08-30 17:20:23 +08:00
src porting/win32 passed in visual studio 2023-09-14 18:34:45 +08:00
tests 1.add WindowManager::getActiveWindow,2.modify build.sh 2023-09-12 16:40:21 +08:00
.gitignore fix view's measure ,and some code style's format 2023-08-12 11:21:26 +08:00
build.sh 1.add WindowManager::getActiveWindow,2.modify build.sh 2023-09-12 16:40:21 +08:00
CMakeLists.txt msvc compatible 2023-09-14 18:54:09 +08:00
CMakeSettings.json add CMakeSettings.json for visual studio 2023-09-14 19:01:28 +08:00
Doxyfile.in CDROID's First commit 2021-06-24 10:12:55 +08:00
LICENSE CDROID's First commit 2021-06-24 10:12:55 +08:00
README.md modify README 2023-08-11 19:28:32 +08:00

Introduction

CDroid is a android like GUI toolkit base on C++11,It is a cross-platform GUI engine for embedded system.

Features:

  • Multi Layer/Multi Window
  • Integrated with 40+ UI Components and 20+ Drawables(compatible with android)
  • All UI Components(Layouts,Drawables...)can be designed in AndroidStudio or Eclipse
  • Vector Graph supported via Cairo

Screen Shots

demo1 demo2 Pott ListView+Progress

UI Components:

  • View
  • TextView
  • EditText
  • Button
  • ImageView
  • ImageButton,
  • CompoundButton
  • ToggleButton
  • CheckBox
  • RadioButton
  • ProgressBar
  • SeekBar
  • Chronometer
  • AnalogClock,
  • SimpleMonthView
  • ViewGroup
  • RadioGroup
  • ScrollView
  • HorizontalScrollView
  • CalendarView
  • ViewPager
  • TabWidget
  • NumberPicker
  • AdapterView
  • AbsListView
  • Spinner
  • ListView (with both vertical and horizontal layout support)
  • GridView (with both vertical and horizontal layout support)
  • YearPickerView

Supported Layouts:

  • FrameLayout
  • LinearLayout
  • TableRow
  • TableLayout
  • AbsoluteLayout
  • GridLayout

Supported Drawables:

  • ColorDrawable
  • BitmapDrawable
  • NinepatchDrawable
  • InsetDrawable
  • ShapeDrawable
  • TransitionDrawable
  • LayerDrawable
  • StateListDrawable
  • LevelListDrawable
  • ClipDrawable
  • GradientDrawable
  • RotateDrawable
  • ScaleDrawable
  • AnimatedRotateDrawable
  • AnimatedImageDrawable
  • TransitionDrawable

Porting guide:

  • 1, A new product porting should be placed to src/porting/xxx(where xxx is you chipset name)
  • 2, implement your porting api to xxx directory
  • 3, modify build.sh to support your port(you should configure sysroot toolchain...).
  • 4, call build.sh --product=xxx
  • 5, make you project(SeeAlso Building CDROID)

Building CDROID:

  • 1.install dependencs: sudo apt install autoconf libtool build-essential cmake gdb pkg-config zip gettext libx11-dev bison python>=3.7
  • 2.install vcpkg:
    git clone https://github.com/microsoft/vcpkg.git
    cd vcpkg
    ./bootstrap-vcpkg.sh
  • 3.install cdroid deplibs:(Recommand you use dynamic triplet(static is not tested)
    vcpkg install gtest sdl2 libunibreak libjpeg-turbo[jpeg8] libzip cairo --triplet=x64-linux-dynamic
  • 4.download cdroid source code:
    cd ~
    git clone http://www.gitee.com/houstudio/cdroid.git
  • 5.build cdroid:
    cd cdroid
    ./build.sh --build=debug
    cd outX64-Debug
    make -j
  • 6.prepare system and app resource
    cp src/gui/cdroid.pak ./
    cp apps/${app}/${app}.pak ./
  • 7.run samples(in directory outX64-Debug
    apps/samples/helloworld
    apps/uidemo1/uidemo1