|
928 | QCAD (main) | Task | Low | CXF font editing | Assigned | |
1 |
Task Description
Port CXF font editor to QCAD 3. - Load CXF fonts (load glyphs into blocks) - Save back to CXF format
|
|
1323 | QCAD (main) | Suggestion | Low | Improve command line support in QCAD | Assigned | |
|
Task Description
Hi,
As a typical command line draftsman (still using acad10 for dos, since microsoft doesn’t supoort Win NT anymore), I noticed a severe lack on command line acces in QCAD.
For example I find the icon and pixel selecting methods within qcad very confusing and rude.
With the normal cad Select command I can select exactly what en how I want it.
I intend not to be rude, but I find my drawing screen littered all over with all kind of very specialist menu’s, tools and options. Sorry, I just want to make a drawing at the natural intuitive way, as with a pencil. So I use command line Commands, such as Move, Copy, Change, Select, a.s.o. For a ‘Command scripting’ user (-batching is a different tool!-), it seems to me logical these basic commands should be accessable.
|
|
1368 | QCAD (main) | Suggestion | Low | Context Menu - suggestions | Assigned | |
1 |
Task Description
I love using the context menu, speeding up my workflow indeed.
I would like to suggest that we have the added option to show only icons if desired and also that maybe an option to save and show commonly used tools!
Maybe the context menu could be configurable to show two columns, one for the normal last used tools and the othjer one for the user saved tools?
What do you think?
|
|
1469 | QCAD (main) | Suggestion | Low | Cartouche automatique | Assigned | |
1 |
Task Description
Would not it be possible to create a kind of template for printing? We draw our room without cartridge. The cartridge will automatically appear when printed. The scaling could be automatic so that it goes in the A4 and therefore also will post the scale automatically. The name of the play could be the file name, date last saved after it the rest of the information that would be to add somehow (material index, designer, ...).
Original suggestion:
Bonjour,
Ne serait il pas possible de créer une sorte de template lors de l’impression ? On dessine notre pièce sans cartouche. Le cartouche s’affiche automatiquement lors de son impression. La mise à l’échelle pourrais être automatique pour que ca rentre dans le A4 et donc l’échelle s’afficherai aussi en automatique. Le nom de la pièce pourrais être le nom du fichier, la date du dernier enregistrement après c’est le reste des infos qui serait à ajouter je ne sais comment (matière, indice, dessinateur, ...).
|
|
1526 | QCAD (main) | Suggestion | Low | Exporting block attributes to CSV | Assigned | |
1 |
Task Description
Two useful commands make it necessary to
1-”delete all the history of the command lines without terminating QCad” ; and
2-”export attributes to the CSV file as exported to the Blocks List”
|
|
1678 | QCAD (main) | Suggestion | Low | Property Editor dialog | Assigned | |
|
Task Description
The line for “General properties”, “Layer” the line is too narrow, so you do not see the layer name when the Property Editor is pinned to the side. (see Forum - Suggestions and Feedback): https://www.qcad.org/rsforum/viewtopic.php?f=31&t=5239
|
|
1740 | QCAD (main) | Suggestion | Low | Make unprintable layers also hidden in print preview | Assigned | |
|
Task Description
Make unprintable layers also hidden in print preview
|
|
1324 | QCAD/CAM | Suggestion | Very Low | Confusing Copy / Move option | Assigned | |
|
Task Description
Hi,
Using the Copy and Move command the [ ] Use current layer and attributes’ is confusing.
Perhaps [ ] change copy /moved set to current layers and attributes. is more suitable.
|
|
1375 | QCAD (main) | Suggestion | Very Low | Install in hidden folder | Assigned | |
|
Task Description
After each update, I add a dot before the ~user/opt folder (and in the program launcher) created by QCAD to unclutter my file manager’s appearance. Would be easy, I think, to make the installer put the program directly in ~user/.opt, and nobody would miss that folder while browsing through daily used files.
And what about installing the program as root, so all users of a computer could use it without personal installs, and only personal setting files created by users would be kept in ~user/.opt/qcam.
Jean-Claude
|
|
1607 | QCAD (main) | Suggestion | Very Low | Indent 'Spline Segments:' in explode preferences | Assigned | |
1 |
Task Description
FS#1604 was issued because of non-intuitive hierarchy of the preferences for the Explode function. The task comment recieved explains the funcionallity in details not found elsewhere.
Indentation of the phrase ‘Spline Segments:’ suggest hierarchy. Graying out the drop down box for the number of spline segments establish hierarchy.
|
|
137 | QCAD (main) | Refactoring | Low | SVG Export precision | Assigned | |
|
Task Description
In files exported with the (even PG) exporter I sometimes see values like these: 334.99999999999994 or 570.0000000000001 and very often 12 digits of precision.
To safe on file size, I suggest, that QCAD rounds values on SVG export to eg. three places. When viewed in an ordinary web browser, that will result in a precision of 1 inch / 96dpi / 1000 = 0.00026mm, not? Ends should still meet.
|
|
1056 | QCAD (main) | Refactoring | Very Low | Dead and wrong code in RSPlatform.cpp | Assigned | |
|
Task Description
I am considering pushing the following diff:
--- a/src/core/RSPlatform.cpp
+++ b/src/core/RSPlatform.cpp
@@ -205,25 +205,6 @@ int RS::getCpuCores() {
cores = sysinfo.dwNumberOfProcessors;
#elif defined(Q_OS_UNIX)
cores = sysconf( _SC_NPROCESSORS_ONLN );
-#elif defined (Q_OS_MAC) || defined (Q_OS_BSD4) || [...]
- nt mib[4];
- size_t len;
-
- /* set the mib for hw.ncpu */
- mib[0] = CTL_HW;
- mib[1] = HW_AVAILCPU; // alternatively, try HW_NCPU;
-
- /* get the number of CPUs from the system */
- sysctl(mib, 2, &cores, &len, NULL, 0);
-
- if (cores < 1) {
- mib[1] = HW_NCPU;
- sysctl( mib, 2, &cores, &len, NULL, 0 );
- }
-#elif defined(Q_OS_HPUX)
- cores = mpctl(MPC_GETNUMSPUS, NULL, NULL);
-#elif defined(Q_OS_IRIX)
- cores = sysconf( _SC_NPROC_ONLN );
#endif
(truncated list to manage size)
I see that most of this was put in there as a kind of a note-to-self originally, however _SC_NPROCESSORS_ONLN is implemented by every realistically possible targets anyway, so for all practical purposes, this is dead weight.
A couple of questions remain, though:
#ifdef Q_ OS_WIN32 should probably be Q_ OS_WIN, so as to include win64 as well.
Assuming the real purpose for this function is to determine how many parts a particular task is to be split into in the future, if and when QCAD gets the need to split expensive tasks among multiple CPUS, “core” probably shouldn’t be static - CPUs are hot-pluggable today, and while one probably doesn’t do that on a laptop, it’s not unfeasible in, say, a VDI environment.
Thoughts?
|
|
288 | QCAD (main) | Performance Issue | Low | opening dwg file takes very long [improved] | Assigned | |
|
Task Description
Opening a 4 MB dwg file results in no-response for about five minutes. Opening the same file with DraftSight takes less than five seconds.
|
|
728 | QCAD (main) | Performance Issue | Low | Slow loading of drawing with many block inserts | Assigned | |
1 |
Task Description
Slow loading of drawing with huge number of block inserts (more than 10000).
|
|
259 | QCAD (main) | Feature Request | Medium | Chain dimensions | Likely to be implemented | |
10 |
Task Description
Chain dimensions
|
|
260 | QCAD (main) | Feature Request | Medium | Reference dimensioning | Likely to be implemented | |
8 |
Task Description
Reference dimensioning (baseline dimensioning)
Create multiple dimensions using the same base line.
|
|
693 | QCAD (main) | Feature Request | Medium | Support for external references (XREF) | Likely to be implemented | |
13 |
Task Description
Support for external references (XREF)
|
|
694 | QCAD (main) | Feature Request | Medium | User coordinate systems (UCS) | Likely to be implemented | |
5 |
Task Description
UCS support.
|
|
12 | QCAD (main) | Feature Request | Low | File Export Formats | Assigned | |
|
Task Description
Open
Postponed
Not Planned
EMF/WMF (use SVG instead or use SVG to EMF converter)
Done
|
|
21 | QCAD (main) | Feature Request | Low | Add line weight scale factor | Assigned | |
|
Task Description
Required for extreme units such as Nanometers or Kilometers. See also FS#20
|
|
116 | QCAD (main) | Feature Request | Low | Show polyline area in property editor | Assigned | |
2 |
Task Description
Show area of closed polyline, hatch, solid fill in property editor.
|
|
154 | QCAD (main) | Feature Request | Low | Image: move reference points to scale | Assigned | |
|
Task Description
Image: move reference points to scale
|
|
173 | QCAD (main) | Feature Request | Low | explode text to letters | Assigned | |
|
Task Description
implement
|
|
208 | QCAD (main) | Feature Request | Low | SVG export: support custom line weights | Assigned | |
|
Task Description
Find way to support custom line weights for SVG export. See also forum thread: http://www.ribbonsoft.com/rsforum/viewtopic.php?t=1594
|
|
228 | QCAD (main) | Feature Request | Low | Insert current date (and other fields) | Assigned | |
1 |
Task Description
Insert filed into drawing that displays current date, file name, ...
|
|
268 | QCAD (main) | Feature Request | Low | Define grid origin | Assigned | |
|
Task Description
Define grid origin
|
|
275 | QCAD (main) | Feature Request | Low | Rounding all corners of a polyline | Assigned | |
|
Task Description
Modify - Round - Click polyline - round all corners
|
|
277 | QCAD (main) | Feature Request | Low | command line arguments: allow class name after -exec | Assigned | |
|
Task Description
command line arguments: allow class name after -exec
|
|
293 | QCAD (main) | Feature Request | Low | multi-select for blocks | Assigned | |
|
Task Description
It would be nice if one could select multiple blocks in the block list at once (holding ctrl or ctrl+shift). Main purpose would be to delete them if they are not needed anymore. If possible, the same applies to layers.
|
|
316 | QCAD (main) | Feature Request | Low | Blocks list and selected block | Assigned | |
1 |
Task Description
Wouldn’t it be nice, if selecting a block in model view would somehow highlight (just like clicking a block in the list does) the selected block in the “Block List” window?
(Feature request sounds a little harsh, enhancement proposal would seem more apt.)
|
|
355 | QCAD (main) | Feature Request | Low | Remember function for dimension Option | Assigned | |
|
Task Description
I think it would be nice to have more flexibility for Prefix etc. option (not only the drop down with a given choice) and a remember function for all those fields like postfix and tolerance.
Why Remember Function: If I use a postfix like <>” in the postfix field I’m only able to use it for this particular dimension type at this time. If I change the type (from Horizontal to vertical or what ever) I have always to repeat my postfix. The same with tolerances.
|
|
384 | QCAD (main) | Feature Request | Low | Menu icons under Mac OS X | Assigned | |
|
Task Description
Make this an option. Default should be no icons since icons are unusual for Mac OS X application menus.
|
|
388 | QCAD (main) | Feature Request | Low | More options for Polygons ... | Assigned | |
3 |
Task Description
Possibility to draw Polygons with a given dimension for across flats (not only corners).
|
|
396 | QCAD (main) | Feature Request | Low | Blocks: moving blocks: show bounding box | Assigned | |
|
Task Description
Blocks: moving complex blocks with drag and drop should show bounding box as preview
|
|
408 | QCAD (main) | Feature Request | Low | Script Macro recorder | Assigned | |
3 |
Task Description
Having practically no experience in scripting, a recorder that one could activate to memorize repetitive tasks (ie: inserting several layers with different attributes when starting a new drawing)would a useful tool to help get a start on scripting.
|
|
426 | QCAD (main) | Feature Request | Low | Scriptable entities | Assigned | |
|
Task Description
Provide script functionality for entities:
Paint or decorate entity, for example based on custom properties assigned to the entity
Listen and react to events
|
|
454 | QCAD (main) | Feature Request | Low | combined move/rotate/scale with two reference points | Assigned | |
|
Task Description
It would be extremely helpful, if marked objects could be moved/rotated/scaled in a single step with two reference points as source and two reference poitns as destination. With a tool like this, “should match”-drawings could be merged easily.
|
|
455 | QCAD (main) | Feature Request | Low | logical operations for polylines | Assigned | |
|
Task Description
A missing feature in my work are logical operations (combine, intersect, ..) for polylines
Example: Draw some elements, select them, say combine. The result will be the outline of all elements.
|
|
467 | QCAD (main) | Feature Request | Low | Feature request for new Arc tool option to add to Arc s... | Assigned | |
1 |
Task Description
For and behalf of mandrena
To add another Arc tool option in Arc tools set:
1.Specify Start point for Arc. 2.Specify End point for Arc. 3.Specify “Tangent” direction (without being restricted in input field) so you can visually select a point on your desired Tangent line!
|
|
500 | QCAD (main) | Feature Request | Low | Autohide Side Panel | Assigned | |
|
Task Description
it would be ideal to be able to have the option to autohide the side panel to increase the visible drawing space when working on a small screen.
|
|
502 | QCAD (main) | Feature Request | Low | Points on line: enter distance instead of number of poi... | Assigned | |
1 |
Task Description
Points on line: enter distance instead of number of points as a variant of the tool or as a new tool.
|
|
503 | QCAD (main) | Feature Request | Low | Convert entities to points with a fixed distance | Assigned | |
|
Task Description
Select lines, arcs, ... and convert them to points along the lines, arcs, ... with a fixed distance.
See also forum at: http://www.ribbonsoft.com/rsforum/viewtopic.php?t=1834
|
|
512 | QCAD (main) | Feature Request | Low | Modify stretch and Restrict ortho | Assigned | |
|
Task Description
The modify stretch tool wants first and second corner, start and end point, then starts afresh. When I turn on restrict horizontally eg to align two points between start and end, the restriction sticks and I have to call restrict none, to be able to perform the next iteration, set the first corner then.
So, in the quest for a comfortable user interface, it was nice, if the modify stretch first/second corners parameter setting was not affected by current restrict/ortho etc. settings. Actually, that does not make any sense at all anyways, does it, a rectangle is defined by two degrees of freedom, isnt it?
|
|
514 | QCAD (main) | Feature Request | Low | Punktpestimmung Intersection manual muss immer wieder n... | Assigned | |
|
Task Description
Beispiel: Zeichnen einer Linie (Line two points) mit Punktbestimmung. Wähle ich für die Punktbestimmung z.B. “End” bleibe ich in diesem Modus bis ich etwas anderes wähle. Gut
Wähle ich für die Punktbestimmung “Intersection manual” muss ich dies für jeden Punkt immer wieder neu anwählen. Schlecht
|
|
516 | QCAD (main) | Feature Request | Low | To add option to 'print only' selected area. | Assigned | |
2 |
Task Description
To add the option to ‘print only’ selected area in a drawing.
|
|
519 | QCAD (main) | Feature Request | Low | Press tab to access first control in options tool bar | Assigned | |
|
Task Description
See: http://www.ribbonsoft.com/rsforum/viewtopic.php?t=1867
Apparently this was possible in QCAD 2 due to the default behavior of Qt.
|
|
525 | QCAD (main) | Feature Request | Low | change the printed symbol of points | Assigned | |
|
Task Description
Hi,
in QCAD3 RC2 points were printed as crosses, in QCAD3 RC4 they are printed as (very little) points. I think this isn’t a bug but a feature.
It would be nice if one could change this behaviour / select the symbol of points.
Best regards - Stefan
This is a double post of http://www.ribbonsoft.com/rsforum/viewtopic.php?p=5870#5870 as suggested there.
|
|
528 | QCAD (main) | Feature Request | Low | Font Editing | Assigned | |
|
Task Description
Dear Sir, I have noticed that in QCAD 3 rc4 it is not possible to open and edit font files. This feature exists in version 2.2 and is indispensable to people using not common languages. For example the unicode font does not have all greek characters, so I have added a few of the missing ones by editing the unicode.cxf font with version 2.2. I kindly ask the designers to consider enabling this capability again. Thank you!
|
|
533 | QCAD (main) | Feature Request | Low | Kopierendes/Ausschneidendes Rechteck (Kreis) Werkzeug .... | Assigned | |
|
Task Description
In meiner Vergangenheit habe ich in anderen CAD Programmen mit folgendem Werkzeug gearbeitet was ich für Detailansichten, Bereinigungen oder ähnliches extrem Hilfreich empfand. Wäre schön wenn es so etwas auch in QCad gebe.
Werkzeug: Man zieht ein Rechteck (oder Kreis) über einen gezeichneten Bereich auf. Alles was innerhalb oder außerhalb des Rechtecks liegt wird kopiert/ausgeschnitten/gelöscht und auch direkt an den Linienkanten des auswählenden Rechtecks geschnitten.
Momentan kann ich ein Rechteck für Selektion bestimmen - muss aber dann nach einer Kopie alles manuell trimmen, löschen etc. um nur den gewünschten Rechteckinhalt zu bekommen ...
|
|
554 | QCAD (main) | Feature Request | Low | Auswahlbox sollte auch mit der Shift Taste Bereiche dem... | Assigned | |
|
Task Description
Ziehe ich mit der Maus eine normale Auswahlbox kann ich Elemente markieren. Möchte ich einzelne Bereiche wieder herausnehmen muss ich alle Elemente einzeln anklicken (mit gedrückter Shift Taste). Ich kann zwar dies komfortabler gestalten mit der Select → (De -) Select Contour Funktion welche aber erst über das Menue aufgerufen werden muss.
So wie ich einzelne Elemente mit der Maus auswählen und mit der Shift-Maus Funktion deselektieren kann wäre es schön wenn die Shift Taste auch bei Auswahlbereichen direkt zum deselektieren eingesetzt werden könnte.
|