Re: Feature diagram with DIA

2006-03-09 Thread Christophe Ponsard
Hello Pablo please check the FAQ: http://www.gnome.org/projects/dia/faq.html#AddingShapes http://www.gnome.org/projects/dia/custom-shapes you can easily add new shapes/sheets using XML I used this technique in the first place to implement the domain specific RE-sheets (see KAOS, I*, Jacks

Dia library extensions

2002-11-17 Thread Christophe Ponsard
way) - is it possible to "specialize" existing shapes/connectors (the XML way) eg. have the UML actor icon display "agent" eg. have the UML message connector displaying a default message - is there a web-site where people can post their own sheet for other people to use ??

Re: Dia extension

2002-11-22 Thread Christophe Ponsard
I can tell you it works. Some hints: - the location of the .dia extension directory can vary (program file or user home) - I had to explicitly create the sheet (by duplicating an existing one in .dia/sheets) - after you can populate using the "populating" interface of dia or by adding your own s

Re: Dia extension

2002-11-22 Thread Christophe Ponsard
Marc-Philippe Huget a écrit: Christophe Ponsard wrote: I can tell you it works. Some hints: - the location of the .dia extension directory can vary (program file or user home) under W2K, this directory is under dia directory and under Linux, the directory is under

Re: Menus are different

2002-11-22 Thread Christophe Ponsard
I have this entry both on unix and windows did you check the version, should be 0.90 C. Marc-Philippe Huget a écrit: I hope I am not wrong but have you noticed that there are two different versions of menus given you use Unix version or Windows version? I didn't find in File menu, the item "Shee

Compiling DIA

2002-11-22 Thread Christophe Ponsard
Hello, I am trying to recompile dia on Linux Mandrake 9 I checked out the sources from the CVS Then tried to ./configure as indicated in the INSTALL but there is no such file So I tried ./autogen.sh which asked to install intltool-0.16.tar After installing it, autogen recommanded a number of o

Re: Menus are different

2002-11-22 Thread Christophe Ponsard
http://www.lysator.liu.se/~alla/dia/ but when I check the About menu under Linux, I see dia-0.88, is this site not updated? Christophe Ponsard wrote: I have this entry both on unix and windows did you check the version, should be 0.90 C. -- Marc-Philippe Huget Agent Applica

Re: Compiling DIA

2002-11-22 Thread Christophe Ponsard
I installed intltool from a tarball In fact the AC_PROG_INTLTOOL is not detected I guess I have some path problems Anyway I'll have a more recent version installed and from the RPMs thanks C. Cyrille Chepelov a écrit: Le Fri, Nov 22, 2002, à 03:31:10PM +0100, Christophe Ponsard a

Re: Compiling DIA

2002-11-23 Thread Christophe Ponsard
tion with my regular dia version I would be happy to get hints from those who experienced the same behaviors. Another question: I saw some python stuff in there. Is it possible to write python plugin (or is this planned ine some future) ? cu christophe Christophe Ponsard a écrit:

Re: Compiling DIA

2002-11-24 Thread Christophe Ponsard
Can you see the text of objects with fixed text, such as the UML Class object? It might be a font problem. This is very likely to be the reason. I'm going to check that ! Anyway, as I developed an object plugin, I will try to drop it in the ./dia/object directory. You

Re: PyDia (was Re: Compiling DIA)

2002-11-26 Thread Christophe Ponsard
Thanks for pointing the ref. I will have a try with it a soon as a get a stable dvpt environment (not so easy with the ongoing gnome1 -> 2 transition) A well-designed and well-documented Python scripting would be great to allow people to extend dia in a easy and portable way. In hope we wil

Re: usability, sheet layout [was Re: Cisco shapes patch]

2002-11-30 Thread Christophe Ponsard
very good suggestion. I was about to ask sth similar for UML. for now I am using the following workaround: export DIA_SHEET_PATH to a location with the subset of sheets you want to work with. christophe Lars Clausen a écrit: On Thu, 28 Nov 2002, Alan Horkan wrote: I've

Bug in po-checktrans.py ?

2002-12-10 Thread Christophe Ponsard
I am not a python-man but I am getting an error in lign 53 of po-checktrans.py if s.find('fuzzy') >=0 which I fixed using if string.find(s,'fuzzy') >= 0 (rather weird, I am quite convinced the translation process was working before...) christophe p. __

Property problem with "intdata-generic" shapes

2002-12-12 Thread Christophe Ponsard
Hi all, I am implementing my first dia sheet. Almost everything is going fine however I have the following interesting problem (I think ;-) Here is the context: I choose to implement several shapes using the same object class and use the "intdata" feature to specify which one in the XML sheets. I

Help on Bezier curves

2002-12-13 Thread Christophe Ponsard
Could anyone point me to some ref/example on how to program a Bezier curve, especially wrt to the use of BezPoint in the fill_bezier and draw_bezier function of the diarenderer ? (I am trying to render "cloud" figure ;-) thanks christophe ps. I found a workaround for my property problem wit

Structuring DIA sheets

2002-12-16 Thread Christophe Ponsard
Hello as the number of dia sheets is now quite large, I guess it would be interesting to have some structuring/display mechanism to manage them such as: - grouping sheets by category (and maybe subcategory) eg. network, electrical engineering, software engineering,... - associating a subset of wor

Re: Structuring DIA sheets

2002-12-16 Thread Christophe Ponsard
There's been some discussion recently. We're thinking of having a treeview for it. A simple and natural design ! I guess we will have to consider adding new tags to the XML sheet descriptors to have the information to build that tree. Eg. network cisco I'm not sure what it'd mean to associa

DIA - Requiment Engineering sheets

2003-02-05 Thread Christophe Ponsard
gato.org/person/AlanHorkan/ PS To Lars: do we have suitable IFDEFs that i can commit new stuff behind without interfering with your release? On Tue, 4 Feb 2003, Christophe Ponsard wrote: Date: Tue, 04 Feb 2003 16:06:37 +0100 From: Christophe Ponsard <[EMAIL PROTECTED]> To: [EMAIL

Re: Dia and UML2

2003-02-11 Thread Christophe Ponsard
Hi, rounded rect looks sth like this: renderer_ops->fill_rounded_rect(renderer,&p1,&p2, &GOAL_BG_COLOR, elem->height/2.0); renderer_ops->draw_rounded_rect(renderer,&p1,&p2, &GOAL_FG_COLOR, elem->height/2.0); have a look in "diarenderer.h" to get familiar with the drawing primitives Chri

Re: Dia and UML2

2003-02-11 Thread Christophe Ponsard
I also heard about providing new mechanisms to better tune the modelling, and something about separating "superstructure" and "infrastructure". (eg SDL underlying sequence diagrams). But all this is rather fuzzy in my mind. Probably also some stuff wrt to OCL and MDA. I haven't looked at the OMG

Re: UML state diagrams

2003-02-12 Thread Christophe Ponsard
Hello, Andrzej Wasowski wrote: Hi, As you UML is being discussed my question comes not completely off topic. What about supporting statecharts in dia. Is anybody working on that? I only see a mysterious icon "create a state machine", which seems to create a state (rather than a machine). R

Re: UML state diagrams

2003-02-12 Thread Christophe Ponsard
Sorry, but I was damn pretty sure to have checked on both 0.90 and 0.91pre1 Maybe I messed up my versions. If the work is done, that's good news ! Christophe Please have a look at a recent dia. Again, see a recent dia. With more UML shape, the sheet could become a bit overcro

Dia on win-32

2003-08-20 Thread Christophe Ponsard
Hello I am working at a computer science dept. The sysadmin is currently busy performing a installation for student on various platforms (linux, solaris and win) so they can use dia in all our environment for their work this year (especially in software engineering, system modelling, code doc

Dia contribution - system modelling sheets

2004-05-28 Thread Christophe Ponsard
/~faust/pub/dia/dia-install.html Kind Regards Christophe -- Ponsard Christophe -- CETIC/FAUST Aéropole, rue Clément Ader 8, B-6041 Gosselies tel: ++32/71/91 98 26 web: http://www.cetic.be email: [EMAIL PROTECTED

Re: Dia contribution - system modelling sheets

2004-06-18 Thread Christophe Ponsard
Lars Clausen wrote: On Fri, 2004-05-28 at 21:26, Christophe Ponsard wrote: Dear all, some time ago I contributed some sheets for system modelling using classical notations like Jackson and more recent one like i* and KAOS (goal-oriented modeling). Those are problem oriented notations

Re: Dia contribution - system modelling sheets

2004-06-22 Thread Christophe Ponsard
[EMAIL PROTECTED] wrote: Sounds good. If you can send us the fixes in parts as you get them done rather than one big chunk at the end, it'd be easier for all parts. -Lars Hello here is the first part of fixes addressing the following issues: - Jackson shared/requirement phenomena property selecto

Re: Dia contribution - system modelling sheets - patch#2

2004-06-23 Thread Christophe Ponsard
option) any later version. * - * * - ***/ +/* Dia -- an diagram creation/manipulation program + * Copyright (C) 1998 Alexander Larsson + * + * Objects for drawing KAOS goal diagrams. + * This class supports the whole goal specialization hierarchy + * Copyright (C) 2002 Christophe Ponsard

Re: Prerelease of 0.94 is out

2004-07-12 Thread Christophe Ponsard
ttached. Could they make their way in the next 0.98-pre ? (just overwrite the corresponding files in the sample subdirectory) I also noticed the same problem with the diagram called "render-test.dia". All the other samples seem OK. I don't know i

Re: thanks for nothing - a look at the uninstaller

2014-02-03 Thread Christophe Ponsard
Hello Le 29/01/2014 21:35, Octavio Alvarez a écrit : If this was the fault of the installer/uninstaller I can assure you this is considered grave by anyone around, but we need to replicate the problem to find the root cause and provide a fix. I had a look at this uninstaller part of this instal

Re: Do you have a diagram of DIA itself for me to study

2020-06-08 Thread Christophe Ponsard via dia-list
amples/Self ___ dia-list mailing list dia-list@gnome.org https://mail.gnome.org/mailman/listinfo/dia-list FAQ at http://live.gnome.org/Dia/Faq Main page at http://live.gnome.org/Dia -- *Christophe PONSARD* Research-Innovation-Exploitation Coordinator CETIC Avenue Jean