65
I Use This!
Moderate Activity

Commits : Listings

Analyzed about 16 hours ago. based on code collected 2 days ago.
Jun 15, 2023 — Jun 15, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
added i18n() call to "example font" strings, reported by Caulier Gilles on [email protected] More... about 21 years ago
replace i18n() with I18N_NOOP() to stop it breaking compile More... about 21 years ago
added i18n() call to author string (KAboutData), reported by Caulier Gilles on [email protected] More... about 21 years ago
Remove needless #include that I added earler today More... about 21 years ago
added i18n() call to string "Association font", reported by Caulier Gilles on [email protected] More... about 21 years ago
Make it compile with srcdir!=builddir and some other thingies More... about 21 years ago
removed namespace around min() and max() functions and included diagramelement.h in classwidget.cpp Hopefully this should stop the fatal compile errors. More... about 21 years ago
min and max function were not found in gcc 3.x fixed. More... about 21 years ago
Aha!, found where the context menu is handled... I think this code was written for QT 1/2, where the QPopupMenu's selection had to be handled in a huge case instead of having the menu call the slot directly... that's why I couldn't find it. More... about 21 years ago
Add refactoring to the build system More... about 21 years ago
Aha!, found why the old classwidgets were not being updated... dont understand why they get the signal from the UMLDoc instead of from the UMLClass... and dont know how you can construct a ClassWidget *without* a UMLClass ( 3 constructors?). but oh well... More... about 21 years ago
FIXME-- for some reason the refactoringassistant is not linked into the main app unless make thinks it is used in the main binary... for now the refactoringassistant is called from the classwidget (test only), this should be changed, and the one calling it should be the document or the main app, but till that's that way we need the lib linked. More... about 21 years ago
Operation and Atts list in classifier/class set to not autoDelete mode: -> the refactoring assistant needs to be able to "take" (remove) an op or att from one class without it being deleted (so it can be inserted into another class) More... about 21 years ago
Start of RefactoringAssistant. It can now: * move attributes and operations between the classes in a class hierarchy *show (not yet change) opperation properties (atts props should come soon) *create new super/derived classes (the classes are created and the association between the two classifiers is made, but the association doesnt show in the diagram... I think this has to do with the UMLAssociation Vs. AssociationWidget problem More... about 21 years ago
Start of associationwidget code. Implemented as a canvasItem.. altough I think this is thre right thing, I am starting to think implementing is a an object *containing* a bunch of lines (like in current code) would be much easier... I dont think it'd be clean, but it would definetly be easier... More... about 21 years ago
-Added documentation -implemented raise/low/to background / to foreground More... about 21 years ago
Fixed crash Start of association code More... about 21 years ago
added documentation. small fixes. More... about 21 years ago
revert change to use QList. using Qpointarray instead More... about 21 years ago
Revert change to QList<QPoint>. using qpointarray instead. More... about 21 years ago
Added documentation. Large improvements to drawing routine More... about 21 years ago
Add new files to build system (dialog pages) More... about 21 years ago
Type names should not be translated. removed i18n from typenames like "bool" and "int" More... about 21 years ago
Added documentation Misc. small improvements More... about 21 years ago
Added documentation. Misc. improvements More... about 21 years ago
Added more dialog pages and their ui-base files. not all functionality implemented More... about 21 years ago
after a linebreak, always start at the beginning of the next line and not wherevever textX may point to More... about 21 years ago
Revamped (and rewrote) the entire class. Now it better considers interfaces, the multitude of associations, whether another classifer is in association role, the multiplicity of that role, and so on (basically leverages changes to UMLConcept change to UMLClassifier as base class for UMLClass and UMLInterface as well as the myriad UMLAssociation/AssociationWidget data changes made in the past few months). Makes use of classifierinfo class now too. More... about 21 years ago
added classiferinfo class to build More... about 21 years ago
Added this class to the project as a means for code generators to reuse common code that will summarize important aspects of classifiers, tasks such as finding all the owned classfiers in association with the current classifier, whether or not its an interface or class, and any static attributes, etc are in this class. More methods should be added as utility is recognized. Because this is forseen to only be used by code generators, I have placed it along side of them in the codegenerators sub-directory..appropriate? More... about 21 years ago