Re: [Qt-creator] Problems building QtCreator 2.1 Beta2

2010-12-04 Thread Alex Oransky
Thanks Christian! The workaround helped. Alex On Wed, Dec 1, 2010 at 4:33 AM, Christian Kandeler < christian.kande...@nokia.com> wrote: > On 11/10/2010 09:11 AM, ext André Hartmann wrote: > > Hi again, > > > > I'm trying to build QtCreator 2.1 Beta2 with Qt F

Re: [Qt-creator] Problems building QtCreator 2.1 Beta2

2010-11-30 Thread Alex Oransky
Victor, Thanks for the reply! I agree, if you compile the Qt from the source code, it works fine, even with Qt 4.7.1. The trouble is/was with Qt binaries from Qt Framework 4.7.1. Thanks again, Alex On Tue, Nov 30, 2010 at 12:14 AM, Victor Sardina wrote: > Alex: > > I don't kno

Re: [Qt-creator] Problems building QtCreator 2.1 Beta2

2010-11-29 Thread Alex Oransky
om Qt Framework 4.7.1 but at least Qt can be built from sources to successfully built the Creator. Thanks, Alex On Mon, Nov 29, 2010 at 3:32 AM, André Hartmann wrote: > Hello all, > > Ok, I just tried again with the Creator 2.1 RC1, same problems as before. > > I use the Qt 4.7.1

Re: [Qt-creator] Problems building QtCreator 2.1 Beta2

2010-11-28 Thread Alex Oransky
, Qt 4.7.1 needs to be configured in a certain way in order to build Qt Creator? Thanks in advance! Alex Creating library ..\..\..\lib\qtcreator\plugins\Nokia\Helpd.lib and object ..\..\..\lib\qtcreator\plugins\Nokia\Helpd.exp centralwidget.obj : error LNK2019: unresolved external symbol

Re: [Qt-creator] pro file bug in latest creator snapshot?

2010-11-17 Thread Alex
lly happy ;) Alex ___ Qt-creator mailing list Qt-creator@trolltech.com http://lists.trolltech.com/mailman/listinfo/qt-creator

[Qt-creator] pro file bug in latest creator snapshot?

2010-11-16 Thread Alex
Hi, I just installed the latest snapshot of qt-crator for windows (16.11.10) and my lib projects are not expandable in qtcreator anymore. The offending line is this !include( ../common.pri ):error( Couldn't find the common.pri file! as the first line of my pro files. If I remove the line every

Re: [Qt-creator] qt-scxml proyect

2010-10-23 Thread Alex T.
Ok, I got it. Thanks. On 24 October 2010 03:24, wrote: > What generates sc_controller.h is the scc executable, which gets installed > into the Qt directory when you make install from the scc directory. > Cheers, > No'am > > ___ Qt-creator mailing list

Re: [Qt-creator] qt-scxml proyect

2010-10-23 Thread Alex T.
tion fails because of this header is completely mising. > > > From: qt-creator-boun...@trolltech.com [qt-creator-boun...@trolltech.com] > On Behalf Of ext Alex T. [diox...@gmail.com] > Sent: Friday, October 22, 2010 6:59 PM > To: qt-c

Re: [Qt-creator] qt-scxml proyect

2010-10-22 Thread Alex T.
I'm sorry I was wrong about git snapshot. The scc is compiled successfully, the build failed when compiling examples. 2010/10/22 "Antonio Cano Gómez" > Hi, > > I forgot to ask. Are you using some scxml editor to generate the scxml > files. > > Thanks again for all, > > A. Cano > > > - Mensa

Re: [Qt-creator] Compiling and Linking C Projects

2010-10-21 Thread Alex T.
Do you have libfoo.a in that directory after compilation? Because it looks like that you will have only foo.o there. On 21 October 2010 14:17, Erwin Brandenberger wrote: > The qt creators foo.pro file looks like this: > > QT -= core gui > TARGET = foo > TEMPLATE = lib > CONFIG += staticlib

Re: [Qt-creator] qtscxml and QHttp

2010-10-21 Thread Alex T.
Eike, is qt-interest mailling list is the most appropriate for discussing scxml? Thanks. On 21 October 2010 12:12, Eike Ziller wrote: > > On Oct 20, 2010, at 11:55 PM, ext Daniele Giunchi wrote: > > > Dear All, > > I've a problem. I've implemented a QStateMachine using qscxml, > > creating my sc

Re: [Qt-creator] qt-scxml proyect

2010-10-21 Thread Alex T.
I have tried to build scxml from git but it no luck. The current snapshot is not buildalble, or maybe there some dependencies I'm not aware of. Another example for an application that may use finite state machine is mediaplayer, but it is rather small. Besides, there are billing systems and finite

Re: [Qt-creator] qt-scxml proyect

2010-10-20 Thread Alex T.
Is there any bugtracker for this project? I would like to know what issues still remain and whether help is needed. On 20 October 2010 09:31, wrote: > Hi Antonio > The Qt SCXML project is alive in the sense that it works and several people > use it, including inside Nokia, but we're not putting

Re: [Qt-creator] qt-scxml proyect

2010-10-19 Thread Alex T.
The source code is open to public and can be found here http://qt.gitorious.org/qt-labs/scxml. But it doesn't look like that it is actively developed. 2010/10/19 "Antonio Cano Gómez" > Hi, > > I am professor at the university and I am interested in apply model > checking to the Qt-State Machine

Re: [Qt-creator] I want use "xenctrl.h" in qt-creator?

2010-10-08 Thread Alex T.
Did you regenerate Makefile? On 8 October 2010 11:35, 张建锋 wrote: > I want use "xenctrl.h"(xen-devel) in QT, > > In my program , "#include " > In the .pro file , I add " LIBS += -lxenctrl" , > > compiler output undefined reference to 'xc_find_device_number(devicename)'. > > if I compile the progr

Re: [Qt-creator] Adding header files

2010-07-23 Thread Alex T.
Matthias, -I is -I flag for include dirs which is passed to the compiler. It looks confusing because of the font. Jothy, about the difference between #include "" and #include <>. The first one will tell that the header should be searched in the path relative to the currents source file location.

Re: [Qt-creator] Adding header files

2010-07-23 Thread Alex T.
You need to learn how the compiler looks for headers. In you case, you specified -IC:\boost, now when you do #include the compiler will look for it in all directories passed to it via -I switch. If you #include it will not find it, because view.hpp is in C:\boos\multi_array. So, you need to write

Re: [Qt-creator] Adding header files

2010-07-23 Thread Alex T.
I don't think you need to add boost headers to HEADERS variable. Instead, add the path to boost headers to INCLUDEPATH variable, e.g. INCLUDEPATH += -I/home/user/my_unpacked_boost_headers/multi_array Note that is capital i before the path. After that just #include in your sources. On 23 July 2

Re: [Qt-creator] cmake environment

2010-07-22 Thread Alex T.
Check Projects->Run Settings and Projects->Build settings, they have environment sections, just click details and set env vars there. On 23 July 2010 08:32, celil wrote: > I am using cmake to build my project, and in order for my project to > build correctly, I need to define several environment

Re: [Qt-creator] Qt-creator Digest, Vol 22, Issue 35

2010-07-20 Thread Alex T.
No, this is the dir inside qt sources tarball. Download qt-4.7-beta2 tar.gz archive, unpack it, go inside it, go inside demos and there you find sub-attaq. On 20 July 2010 13:29, Anonymous user wrote: > Thanks for your answer, > > > > Someone knows if there is some place from where I could obtai

Re: [Qt-creator] Error compiling

2010-07-14 Thread Alex T.
I built Qt from git and Qt Creator from git yesterday. I had compilation error concerning qml, but don't remember it exactly. After I realized that i have built Qt without '-declarative' flag. After I rebuilt Qt with this flag everything compiled successfully. On 14 July 2010 11:13, André Pönitz

Re: [Qt-creator] Nokia SDK and State Machine Framework on linux

2010-07-10 Thread Alex T.
Who is giving you an error? A compiler or linker? This library is in QtCore. Probably you have to check your CFLAGS/CXXFLAGS and/or LDFLAGS. 2010/7/11 Antonio Cano Gómez > Hi, > > I downloaded the Nokia SDK for linux 64 and tried to compile an aplication > for symbyan. > > This application comp

Re: [Qt-creator] errors in compilation of git version

2010-06-21 Thread Alex T.
I just followed the instruction that said to specify QT_PRIVATE_HEADERS variable and a succeeded in building Qt Creator. Those private headers are in the tar.gz archive of Qt. (Not the directory where you installed Qt) I have Qt extracted in /home/myuser/install/qt-qt, so i just run /usr/local/qt-

Re: [Qt-creator] where should I install Qt Creator / Qt SDK, on Linux?

2010-04-30 Thread Alex Richardson
e directory is safer. --- Alex Richardson ___ Qt-creator mailing list Qt-creator@trolltech.com http://lists.trolltech.com/mailman/listinfo/qt-creator

Re: [Qt-creator] GDB pretty-printing

2010-03-22 Thread Alex Richardson
Hello, > On Sunday 21 March 2010 19:40:45 ext Alex Richardson wrote: > > Hello, > > > > is it possible to use the gdbmacros.py/dumper.py with GDB (without > > QtCreator)? > > The code in the gdbmacros.py/dumper.py is geared towards producing > whatever is use

[Qt-creator] GDB pretty-printing

2010-03-21 Thread Alex Richardson
Hello, is it possible to use the gdbmacros.py/dumper.py with GDB (without QtCreator)? If so I would be highly interested in finding out how to achieve that. I hope some editing of .gdbinit would be enough, but i suspect that won't suffice. Thank you in advance for any replies. Alex Richa

[Qt-creator] "Failed to load core" error

2009-12-13 Thread alex
d not be found." The Core.dll and Core.pluginspec files are in the folder where all the plugins are located. Have anyone seen this problem before? Am I missing some post-build step? Thanks, Alex ___ Qt-creator mailing list Qt-creator@trolltec

[Qt-creator] A problem with version control menu items

2009-12-06 Thread alex
Ubuntu, only git menu item remains when I open a project. I understand that this is very odd and would not go unnoticed before the release of Qt Creator 1.3.0, so I guess, there is something wrong with the setup on both my machines. Have anyone seen this weird behavior before? Thanks, Alex

Re: [Qt-creator] error compiling qt-creator rc in fedora

2009-11-18 Thread Alex T.
As Andre said, you should get the recent Qt 4.6 (e.g. Qt 4.6's rc). Everybody's beta compiled fine. But some changes have been made, so that only fresh Qt 4.6 is needed. 2009/11/18 Itamar Reis Peixoto > I am using qt 4.6 > > the qt-creator 1.3 beta compiled fine. > > > On Tue, Nov 17, 2009 at 8:

Re: [Qt-creator] compiling problems

2009-11-10 Thread Alex T.
Yes, that is correct. 2009/11/10 Stéphane > what could help is to give the Git command to run to get the correct > version of Qt to compile Qt 4.6 from scratch isn't it ? > bests regards > > > Just like Andre said, > > Qt 4.6 from git with 1bed105d048531e3e260eff0ef2533d7cc8ba7fb. > > > > __

Re: [Qt-creator] compiling problems

2009-11-10 Thread Alex T.
Just like Andre said, Qt 4.6 from git with 1bed105d048531e3e260eff0ef2533d7cc8ba7fb. 2009/11/10 Alex T. > You need Qt 4.6 from git to complie Qt Creator successfully. The git > version of Qt 4.6 already has availableUndoSteps() function and others, but > the Qt 4.6beta1 doesn

Re: [Qt-creator] compiling problems

2009-11-10 Thread Alex T.
You need Qt 4.6 from git to complie Qt Creator successfully. The git version of Qt 4.6 already has availableUndoSteps() function and others, but the Qt 4.6beta1 doesn't. I think Qt4.7 doesn't have them either. 2009/11/10 Stéphane > Hello, > > I have the same problem... to compile QtCreator after

Re: [Qt-creator] DEFINES from .pro file is not highlighting

2009-10-15 Thread Alex Williams
> QtCreator does not handle defines from .pro files. This has come up a > number of times on this list, and the developers of QtC has said that > they are working on it, but I have not seen solutions yet. Thank you for reply, Eirik! I think there are one more problem with Qt Creator... When I use

[Qt-creator] DEFINES from .pro file is not highlighting

2009-10-12 Thread Alex Williams
Hello! I have Qt Creator 1.2.1 and have some problems with it :) There are highlighting of code blocks under #define #endif With defines from code itself this works fine. But with DEFINES from .pro file this is not working - Qt Creator does not analyzing project file... Also, DEFINES in win32 and u

Re: [Qt-creator] Compiling QtCreator v1.2.91 from git

2009-10-02 Thread Alex T.
Thanks. That helped. Though just regular make clean && qmake -r && make doesn't help. 2009/10/2 André Pönitz > On Friday 02 October 2009 09:34:43 ext Alex T. wrote: > > Hi, guys. Did anyone have the problem with QtCreator 1.2.91 compiled from > git? > > &g

[Qt-creator] Compiling QtCreator v1.2.91 from git

2009-10-02 Thread Alex T.
Hi, guys. Did anyone have the problem with QtCreator 1.2.91 compiled from git? The compilation is ok. But at startup it says Cannot load plugin because dependency failed to load: ProjectExplorer(1.2.91) Reason: /lib/qtcreator/plugins/Nokia/libProjectExplorer.so: Cannot load library /lib/qtcreato

Re: [Qt-creator] Drawing on QWidget

2009-07-06 Thread Alex Williams
> You even asked on the wrong mailinglist because this > one covers the IDE and not the toolkit. Sorry, I'm just asked question about using QWidget and painting on it right in the Qt Creator IDE. If you creating your GUI outside Qt Creator - there are many examples about QPainter in Qt SDK...

Re: [Qt-creator] Drawing on QWidget

2009-07-06 Thread Alex Williams
> Don't exaggerate... If you look through the QWidget's documentation, sooner > or later, you must see the paintEvent() method and it's described really > well... OK, sorry... I looked at QPainter documentation only. Thank you all for help. P.S. I'm just comparing effort of starting to paint with

Re: [Qt-creator] Drawing on QWidget

2009-07-06 Thread Alex Williams
> The induction from "I could not find it" to "it is (generally) hard to find" > is lacking a proof. [I doubt there is one as I have a counter example: > I found that page within two minutes without ever seing it before] > And, as a really subjective point: Given your wxWidgets code below I am > f

Re: [Qt-creator] Drawing on QWidget

2009-07-05 Thread Alex Williams
> I understand that this touches a fundamental problem of epistemology > but most people I am aware of distinguish between "I cannot observe it" > and "it does not exist". Those people might also be tempted to take > http://doc.trolltech.com/4.5/designer-using-custom-widgets.html as an > indication

Re: [Qt-creator] Drawing on QWidget

2009-07-05 Thread Alex Williams
> Create a subclass of QWidget in code and use the feature called > "Promote to custom widget" to set your own subclass instead of a plain > QWidget. Thank you for help! It works, it's exactly what I wanted :) But this process remains highly unautomated and there is no documentation about doing th

Re: [Qt-creator] Drawing on QWidget

2009-07-05 Thread Alex Williams
> Umm... Why don't you just use the QLabel widget and its setPixmap() method? Because I'm not sure... I know this solution, it works, but It seems that this is a wrong way. When I using QLabel and layouts - it blocking me to scale my windows back again to smaller size, so this solution is not acce

[Qt-creator] Drawing on QWidget

2009-07-05 Thread Alex Williams
Hello! I have Qt Creator 1.2 I placed QWidget to form in deisgner. It scaled by layouts. Then, I have QPixmap. I drawing into QPixmap when pressing on button. Now I want just draw contents of pixmap into QWidget surface right when I pressing button. 1) how to copy QPixmap to QWidget on button cl

Re: [Qt-creator] List of files in project - lost

2009-06-26 Thread Alex Williams
> Alt-0 (Alt-zero) or click on the white-ish icon to the right of > the "hammer" button in the lower right corner. Yes, I found this icon too, thanks =) I tried to find this action in menus, but with no luck =) Now I know that this is called slidebar, so I found it in Window->Show Slidebar...

Re: [Qt-creator] List of files in project - lost

2009-06-26 Thread Alex Williams
> press alt+0 or comand+0 :-) it might help :-) Thank you all! It helps me! =) alt+0 = panel =) ___ Qt-creator mailing list Qt-creator@trolltech.com http://lists.trolltech.com/mailman/listinfo/qt-creator

Re: [Qt-creator] List of files in project - lost

2009-06-26 Thread Alex Williams
> I may not completely understand what you mean. But nevertheless, do you use > sessions? No, I dont even know what is it. About my problem: just open project and switch to "Edit mode" - by default you can see list of files in project and double click them to edit. Now I can't find that list. It'

Re: [Qt-creator] List of files in project - lost

2009-06-26 Thread Alex T.
I may not completely understand what you mean. But nevertheless, do you use sessions? 2009/6/26 Alex Williams > Hello! > I have a problem with Qt Creator 1.2 > List of files in project, where I can choose which file to edit - > lost. I can't turn it on again, at least I cant fi

[Qt-creator] List of files in project - lost

2009-06-26 Thread Alex Williams
Hello! I have a problem with Qt Creator 1.2 List of files in project, where I can choose which file to edit - lost. I can't turn it on again, at least I cant find way to do that. It's not clear enough and not intuitive. How to turn on list of files (.cpp, .ui and others)? Because the only way to ac

Re: [Qt-creator] Patch: FreeBSD compilation

2009-06-26 Thread Alex T.
6PM +0300, Alex T. wrote: > > I would like to contribute these patches. > > They make it possible to compile Qt Creator on FreeBSD. > > > thanks, pushed. > a few comments: > - please give reasons (name missing symbols, etc.) for particular fixes. > i've seen too

Re: [Qt-creator] Text editor can't see new widgets on forms.

2009-06-25 Thread Alex Williams
> It would actually be nice if autocomplete worked with the working versions > of the files instead of the saved versions, but that's your workaround for > now. > try to get the latest snapshot. Thanks to all! Updated to Qt Creator 1.2 - bug fixed! =) P.S. Also I want to ask one more question - w

[Qt-creator] Patch: FreeBSD compilation

2009-06-25 Thread Alex T.
I would like to contribute these patches. They make it possible to compile Qt Creator on FreeBSD. Hope FreeBSD users will find them helpful. Thanks. patch-src-libs-extensionsystem-extensionsystem.pro Description: Binary data patch-src-libs-utils-process_stub_unix.c Description: Binary data __

[Qt-creator] Text editor can't see new widgets on forms.

2009-06-24 Thread Alex Williams
Hello! First of all: thank you very much developers for easy handlers creation! I found this important feature added to Qt Creator. Now, last important thing remains unfixed. I found by myself and many my friends tell me same: When you create new widget on the form - methods autocompletion for thi

Re: [Qt-creator] Creating libraries with QT Creator

2009-05-22 Thread Alex T.
gt; > >> #include "\libs\snmp\mainwindow.h" > >> > >> for example. And btw, in the "src" folder of the library there are > >> some makefiles. I guess I don't need them in my project, because I'm > >> using the sources directly a

Re: [Qt-creator] Creating libraries with QT Creator

2009-05-22 Thread Alex T.
ld be to create a pro file for that library > and to add it to the project's pro file ? > > - Original Message - > *From:* Alex T. > *To:* qt-creator@trolltech.com > *Sent:* Friday, May 22, 2009 11:31 AM > *Subject:* Re: [Qt-creator] Creating libraries with QT Creator

Re: [Qt-creator] Creating libraries with QT Creator

2009-05-22 Thread Alex T.
I would assume that this snmp library was not written using qt library and therefore it has no .pro file in it So, i suggest you compile it without using Qt Creator. It will be easier and faster. 2009/5/22 Kosta > Hello all, > I am trying to GET IN USE this snmp++ library : > http://www.agentpp

Re: [Qt-creator] Additional libraries in my project

2009-05-21 Thread Alex T.
, they were with .tar extensions. I don't know if I have to unrar them > or they are OK for use in the archive. > Here is the link to the library : > http://www.agentpp.com/snmp++v3.2.23.tar.gz > > > > - Original Message - > > *From:* Alex T. > *To:* qt-cr

Re: [Qt-creator] Additional libraries in my project

2009-05-21 Thread Alex T.
Probably you didn't extract it right. tar xfvz But you probably did gzip -d 2009/5/21 Kosta > I don't understand. > In my workspace directory I have created "libs" directory and inside is my > snmp.tar . The extension is tar, I have downloaded it from here > > http://www.agentpp.com/snmp_pp

Re: [Qt-creator] getting sources of qt-creator

2009-05-18 Thread Alex T.
Then try it from here http://qt.gitorious.org/qt-creator This should work for you. 2009/5/18 Lorenzo Bettini > Hi > > I downloaded also the snapshot, but I wanted to have the sync'ed git > repository > > Alex T. wrote: > > Hi, > > > > you can dow

Re: [Qt-creator] getting sources of qt-creator

2009-05-18 Thread Alex T.
Hi, you can download the snapshot from here http://labs.trolltech.com/gitweb?p=qt-creator;a=summary 2009/5/18 Lorenzo Bettini > Hi > > I'm trying these command lines, but I always get errors: > > git clone git://labs.trolltech.com/qt-creator > Initialized empty Git repository in ... > fatal: