Questions tagged [cegui]

Crazy Eddie's GUI system (CEGUI) is a C++ graphical user interface library. It was designed for use in video games, but the library can be used for non-game applications and tools as well. It was released on December 2004 and the current version is 0.8.3.

29 questions
0
votes
0 answers

How could I share my project without installation of any dependances?

I have some question about the sharing of a project in Linux. I have an Ogre game that I would like to share with other people, without any installation of dependances. First, is it possible to just compile the binary, and share it with other…
Dimitri Danilov
  • 1,338
  • 1
  • 17
  • 45
0
votes
1 answer

Make install and environment variables

I started using linux a few months ago and some things are not yet clear to me. When executing the make install command, is it possible to set some variables for the user? For instance, when installing OGRE or CEGUI, are some variable like…
Pierre A
  • 3
  • 3
0
votes
0 answers

Can't compile CEGUI hello world

I am trying CEGUI, I have installed the cegui package of from the community depository of Archlinux, and I can't compile the basic hello world. Here is the code : #include ¬ ¬ …
0
votes
1 answer

CEGUI change button image at runtime

I've been looking through online docs and I've not found a way to update a button or a label image at runtime. I'm trying to display thumbnails within a layout of buttons. The thumbnails will need to update depending upon which images are…
kralvarado
  • 458
  • 5
  • 13
0
votes
1 answer

i made CEGUI-0.8.2 by cmake and then trying add ogre3d, but have some problems help me

this is my first time for cegui, maybe this problems are sounds like stupid, but i dont why really. im doing now compile the cegui vs_solution, but there are some compile error. i already ogre-sdk-1.8.1ver and cegui-0.8.2 vs_solution made by…
0
votes
1 answer

CEGUI doesn't work

I've Ogre3D SDK v1.9 and CEGUI 0.8 and here's my problem . I followed the tutorial in the wiki of cegui and it says me that I have to use cmake. That's what I did but when I click on the button 'Configure' there is an error : CMake Error: The…
0
votes
1 answer

CMake CEGUI / GTK2 Configuration Error

I am trying to build and use CEGUI (Crazy Eddie's GUI) as a library for Ogre. I am using CMake, but during the configuring step for the dependencies, I got the following error: Some or all of the gtk libraries were not found. (missing: …
Alan
  • 1,479
  • 3
  • 20
  • 36
0
votes
1 answer

'IL/il.h' file not found, but it exists

When trying to build cegui the above mentioned header file cannot be found, while it clearly exists in /usr/local/include. Why does this happen? [ 29%] Built target CEGUIBase-0 [ 32%] Built target CEGUIOpenGLRenderer-0 [ 32%] Built target…
Appleshell
  • 7,088
  • 6
  • 47
  • 96
0
votes
1 answer

CEGUI - Loading Resources from DLL

I'm using CEGUI 0.8.2. How can I load all resources from binary? I've created resource only dll containing all needed resources such as .ttf .font .schema .imageset .looknfeel and .png for imageset. I'm using Direct3D renderer and no graphics…
jantobola
  • 688
  • 2
  • 10
  • 28
0
votes
2 answers

include not found, how to fix with cmake?

there my CMakeLists.txt : cmake_minimum_required( VERSION 2.8 ) set (CMAKE_VERBOSE_MAKEFILE ON) project( a.out ) find_package(OpenGL) find_package(PkgConfig REQUIRED) pkg_search_module(GLFW REQUIRED glfw3) pkg_search_module(CEGUI-GL REQUIRED …
The Unholy Metal Machine
  • 1,093
  • 2
  • 17
  • 36
0
votes
1 answer

Visual Studio include files calling error - C++

I'm building one sample from CEGUI, the SDK seems to be fine setle and the futher errors regarding the CEGUI on the log seems to come because of the errors with the includes from MVS. I can't affirm this since I'm not a C++ expert yet...I'm more…
Victor Oliveira
  • 3,293
  • 7
  • 47
  • 77
0
votes
1 answer

Launching other applications from within Ogre

I have a working Ogre C++ application. What I wish to do is to launch other applications from within my application. For example when I click some button in my application, it should launch some other program. I use the combination of fork and exec…
user1261913
  • 325
  • 4
  • 18
0
votes
1 answer

Ogre3D+CEGUI Mouse position icon not cleared from screen

In our project we are developing an architecture based on plugins. Each game is set up as a separate plugin and is responsible for establishing the right environment (SceneManager, SceneNodes, Entities, Lights, ...Cameras,..) In our last game using…
user560500
  • 21
  • 3
0
votes
1 answer

Ogre3D and CEGUI cannot locate resource group "schemes" in TaharezLook.scheme

Perhaps someone can find an answer to my problem. I've tried to follow the basic tutorial #7 from the OGre3D wiki months ago but gave up because I could not solve this problem. I picked it up again and I can't find any kind of help anywhere. I've…
Johanne Irish
  • 1,033
  • 2
  • 10
  • 17
1
2