QT Studio cross-platform Qt 3/4 IDE
QT Studio cross-platform Qt 3/4 IDE
Hallo an alle ....
Auf der google suche ... bin ich in dieses projekt zugestossen...
mit name qt4ds.sourceforge.net neu glaube ich qt4ds-monkey
es lauft gut .....
nun habe ich den source in meine subersion ....
(win download mit http://tortoisesvn.tigris.org/ )
( mac & linux svn)
http://ciz.ch/svnciz/dialog_qt/qt4_a/qt4ds-monkey/
eine von win compilierte version ist bei http://ppk.ciz.ch/win_build/qtstudio.html ge-patch das es mit 4.1 auch geht ...
Doch nun meine 2 Fragen:
1 - Was sind Qpointer? (gefunden im source qt4ds) kann man damit qdialog steuern und kontrollieren?
2 - Wie bringe ich dieses qt studio auf deutsch ... linguistic ... oder kann mann eine komiliertes linguistig retuor auf das xml bringen?
sample http://ciz.ch/svnciz/dialog_qt/qt4_a/qt ... nslations/
Danke im voraus....
Auf der google suche ... bin ich in dieses projekt zugestossen...
mit name qt4ds.sourceforge.net neu glaube ich qt4ds-monkey
es lauft gut .....
nun habe ich den source in meine subersion ....
(win download mit http://tortoisesvn.tigris.org/ )
( mac & linux svn)
http://ciz.ch/svnciz/dialog_qt/qt4_a/qt4ds-monkey/
eine von win compilierte version ist bei http://ppk.ciz.ch/win_build/qtstudio.html ge-patch das es mit 4.1 auch geht ...
Doch nun meine 2 Fragen:
1 - Was sind Qpointer? (gefunden im source qt4ds) kann man damit qdialog steuern und kontrollieren?
2 - Wie bringe ich dieses qt studio auf deutsch ... linguistic ... oder kann mann eine komiliertes linguistig retuor auf das xml bringen?
sample http://ciz.ch/svnciz/dialog_qt/qt4_a/qt ... nslations/
Danke im voraus....
Auch fuer mac qt studio Panther lauft gut..
mac Panther 10.3.9 Build...
http://ppk.ciz.ch/mac_build/qt_studio.dmg.bz2
Nur die console weiss ich noch nicht wie integrieren...
win cmd , linux bash , mac sh geht nicht... terminal ? im xcode doku hat es eine lib fuer sich....
http://ppk.ciz.ch/mac_build/qt_studio.dmg.bz2
Nur die console weiss ich noch nicht wie integrieren...
win cmd , linux bash , mac sh geht nicht... terminal ? im xcode doku hat es eine lib fuer sich....
Qt4DS
Hi,
I'm the creator of Qt4DS, i see fork of my Qt4DS software,
Please, if you like it, send me request, and feedback on my project page
(French or English), i will update it.
I really need Mac user feedback, so .... please help me
If you have questions ( QPointer ?! ) tell me, i will help you as needed!
Project page is : http://sourceforge.net/projects/qt4ds-monkey
Friendly, Nox P@sNox
I'm the creator of Qt4DS, i see fork of my Qt4DS software,
Please, if you like it, send me request, and feedback on my project page
(French or English), i will update it.
I really need Mac user feedback, so .... please help me
If you have questions ( QPointer ?! ) tell me, i will help you as needed!
Project page is : http://sourceforge.net/projects/qt4ds-monkey
Friendly, Nox P@sNox
Hi,
The german translation has be done after the release, the user will continue to update it himself, as the spanish translation.
The german ts file will be present in the rc2 source as well of the others.
Your are welcome to make the italian translation, please register the project mailing list so i can give ts files to translators before rc2 release.
Nox
The german translation has be done after the release, the user will continue to update it himself, as the spanish translation.
The german ts file will be present in the rc2 source as well of the others.
Your are welcome to make the italian translation, please register the project mailing list so i can give ts files to translators before rc2 release.
Nox
Re: QT Studio cross-platform Qt 3/4 IDE
Can you translate it to english please ?!
patrik08 hat geschrieben:Hallo an alle ....
Auf der google suche ... bin ich in dieses projekt zugestossen...
mit name qt4ds.sourceforge.net neu glaube ich qt4ds-monkey
es lauft gut .....
nun habe ich den source in meine subersion ....
(win download mit http://tortoisesvn.tigris.org/ )
( mac & linux svn)
http://ciz.ch/svnciz/dialog_qt/qt4_a/qt4ds-monkey/
eine von win compilierte version ist bei http://ppk.ciz.ch/win_build/qtstudio.html ge-patch das es mit 4.1 auch geht ...
Doch nun meine 2 Fragen:
1 - Was sind Qpointer? (gefunden im source qt4ds) kann man damit qdialog steuern und kontrollieren?
2 - Wie bringe ich dieses qt studio auf deutsch ... linguistic ... oder kann mann eine komiliertes linguistig retuor auf das xml bringen?
sample http://ciz.ch/svnciz/dialog_qt/qt4_a/qt ... nslations/
Danke im voraus....
Translate msg
If You can .... read my personal Englisch ...... 
By search .... on google qt projekt .... i found .... a renamed from qt4ds to actualname ... **monkey**
Now i put the source on my svn directory to browse an share on my mini mac and people... ... to learning better QT .... + i patch the author file ++ insert new adress... wo all cann found from sf.net new name not qt4ds...
I build the mac and win source to test on mac and win... so other people ca reach the builded version to test .... the app qt studio...
But now my question:
1 - Wath is a Qpointer class .... found in the template dir... it is possibel to manage dialogs or what is it... **
2 - question .... You give me the answer to found the german language xml source....
3 - new question/note..... I think wenn the template system is based on xml is much better ... so any user can write a xsl to convert is own template text ..... or from is **.ui file and xslt convert create a redy to run class header + source......
xsltproc is magic + easy to handle file ... I have so much esperience on php5 and xslt . xml....
ciao ....
By search .... on google qt projekt .... i found .... a renamed from qt4ds to actualname ... **monkey**
Now i put the source on my svn directory to browse an share on my mini mac and people... ... to learning better QT .... + i patch the author file ++ insert new adress... wo all cann found from sf.net new name not qt4ds...
I build the mac and win source to test on mac and win... so other people ca reach the builded version to test .... the app qt studio...
But now my question:
1 - Wath is a Qpointer class .... found in the template dir... it is possibel to manage dialogs or what is it... **
Code: Alles auswählen
QPointer<CLASSNAME> CLASSNAME::_self = 0L;
//
CLASSNAME* CLASSNAME::self( QWidget* parent )
{
if ( !_self )
_self = new CLASSNAME( parent );
return _self;
}
3 - new question/note..... I think wenn the template system is based on xml is much better ... so any user can write a xsl to convert is own template text ..... or from is **.ui file and xslt convert create a redy to run class header + source......
xsltproc is magic + easy to handle file ... I have so much esperience on php5 and xslt . xml....
ciao ....
Hi,
1- QPointer are pointer that are equals 0 automatically when you delete the object, with this you didn't need to set your pointer to NULL
3- Well for sure xml /slx are better, if you think you can rewrite this with xml support, tell me, i will send you the last source.
Please send me your RC1 modif source to pasnox@hotmail.com
Can you test the mac version and tell me bugs on ? it's the only platform that i can't test
Thx for your feedback
Nox
1- QPointer are pointer that are equals 0 automatically when you delete the object, with this you didn't need to set your pointer to NULL
3- Well for sure xml /slx are better, if you think you can rewrite this with xml support, tell me, i will send you the last source.
Please send me your RC1 modif source to pasnox@hotmail.com
Can you test the mac version and tell me bugs on ? it's the only platform that i can't test
Thx for your feedback
Nox
From mac 10.3.9 You can see a screenshoot here *pdf... http://ppk.ciz.ch/mac_build/ in action on build....
Console is go bash like linux....
The only Problem is template ++ open form designer not work ...
But mac make a ApplicationName.App dir an i tink template is not full inside....
have a look on http://cvs.sourceforge.net/viewcvs.py/s ... iew=markup
static OSErr checkAppleEventForMissingParams(const AppleEvent& theAppleEvent)
default mac install is /Developer/qt my
$PATH...
-bash: /Developer/qt/bin:/opt/local/bin:/opt/local/sbin:/usr/local/bin/:/bin:/sbin:/usr/bin:/usr/sbin:
$QTDIR
-bash: /Developer/qt: is a directory
version Current Version : 1.0.0 RC1 ( CODENAME: 2006.0.0 )
http://ppk.ciz.ch/mac_build/
on csv you have a beta RC2? to test?
Console is go bash like linux....
The only Problem is template ++ open form designer not work ...
But mac make a ApplicationName.App dir an i tink template is not full inside....
have a look on http://cvs.sourceforge.net/viewcvs.py/s ... iew=markup
static OSErr checkAppleEventForMissingParams(const AppleEvent& theAppleEvent)
default mac install is /Developer/qt my
$PATH...
-bash: /Developer/qt/bin:/opt/local/bin:/opt/local/sbin:/usr/local/bin/:/bin:/sbin:/usr/bin:/usr/sbin:
$QTDIR
-bash: /Developer/qt: is a directory
version Current Version : 1.0.0 RC1 ( CODENAME: 2006.0.0 )
http://ppk.ciz.ch/mac_build/
on csv you have a beta RC2? to test?
Hi,
I have create a cvs module named qt4ds-src-1.0.0 wich will contain source unto the final 1.0.0 release, after that a new module qt4ds-src-2.0.0 will be created with objectif, Qt Designer Full integration.
Can you write in the qt4ds console log when opening an ui file please ?!
And describe more no working templates ( file not found ?!, crash ?!... )
thanks, Nox
I have create a cvs module named qt4ds-src-1.0.0 wich will contain source unto the final 1.0.0 release, after that a new module qt4ds-src-2.0.0 will be created with objectif, Qt Designer Full integration.
Can you write in the qt4ds console log when opening an ui file please ?!
And describe more no working templates ( file not found ?!, crash ?!... )
thanks, Nox
-
Burgpflanze
- Beiträge: 89
- Registriert: 24. Februar 2006 16:41
- Wohnort: Dresden
Es hat nur ein anderen namen bekommen .....Burgpflanze hat geschrieben:Das projekt scheint wohl gestorben zu sein, weder qt4ds noch qt4ds-monkey ist auf Sourceforge auffindbar.
http://sourceforge.net/projects/monkeystudio/
IMO:
in der zwischenzeit habe ich auch mein eigenes projekt mit qt4 mit fast 500 download..... http://sourceforge.net/projects/qtexcel-xslt/
-
Burgpflanze
- Beiträge: 89
- Registriert: 24. Februar 2006 16:41
- Wohnort: Dresden
Download da:Burgpflanze hat geschrieben:Da ist aber kein Download möglich (Stable/Beta wird nicht gefunden).
http://sourceforge.net/project/showfile ... _id=184843
Warum download? CVS ist doch besser ... und selber kompilieren.....
Stell dir mal vor du koentest window Vista source holen und selber kompilieren.... wie schnell ist dann das stuck?
Aber eben nur wenige OS kann man selber von grund auf kompilieren...
http://www.debian.org/ http://www.gentoo.org/ ... Buffalo linux compiliert zu 90% alles automatich http://distrowatch.com/table.php?distribution=buffalo ftp://mirror.switch.ch/mirror/buffalo/ Vor einem Jahr hatte ich ein mirror von buffalo 1,5 Giga traffic am tag!
Und den studio IDE kann man dann auch zu seine bedurfnisse anpassen und direkt eine sprache setzen...
http://sourceforge.net/forum/forum.php?forum_id=554668
http://sourceforge.net/project/showfile ... _id=184843
Code: Alles auswählen
cvs -d:pserver:anonymous@monkeystudio.cvs.sourceforge.net:/cvsroot/monkeystudio login
cvs -z3 -d:pserver:anonymous@monkeystudio.cvs.sourceforge.net:/cvsroot/monkeystudio co -P qt4ds-src-1.0.0
servus,
es gab ja mal DevQt
anscheinend ist dies, wie es auf der seite steht, TOT, dafür gibt
es nun Edyuk mal schauen was daraus wird
ist vom selben entwickler .....
SourceForge und Berlios
es gab ja mal DevQt
anscheinend ist dies, wie es auf der seite steht, TOT, dafür gibt
es nun Edyuk mal schauen was daraus wird
SourceForge und Berlios