summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/filedialogimpl-win32.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-09-24Fix a crash in CUSTOM_TYPE Windows native file open dialogsPatrick Storz1-7/+7
See also 49ea08c12ce0f931ba7fc79d8ad9f2fa42a7dca7 Fixes https://gitlab.com/inkscape/inkscape/issues/378
2019-08-31Implement "translationdomain" attribute for extensionsPatrick Storz1-22/+19
Will allow extensions to ship their own message catalog used for translation of the extension#s strings. Needs to be set on the root <inkscape-extension> element of the .inx Currently supported values: - unset: use default textdomain (which happens to be 'inkscape') - 'inkscape': use Inkscape's message catalog - 'none': disable translation for the extension's strings
2019-05-27Hackfest2019: Rm tautological testsAlexander Valavanis1-2/+0
2019-03-06Avoid the “using std::*;” or “using namespace std;” constructs.Emmanuel Gil Peyrot1-9/+10
This makes the code a lot less readable and greppable for no reason.
2018-11-11Fix encoding of "title" label in win32 native file dialogEduard Braun1-1/+4
Fixed bugs - https://bugs.launchpad.net/inkscape/+bug/1802726
2018-11-08Clarify licensesMax Gaukler1-2/+3
- add license headers to everything - convert a few files from public domain or LGPL2.1+ to GPL2+ - some archaeology to clarify which files are from which library
2018-10-01Remove #include "config.h" wherever possibleEduard Braun1-3/+0
2018-10-01Use _WIN32 instead of WIN32Eduard Braun1-2/+2
The former is guaranteed to be set for any compiler targeting win32, the latter is implementation dependent (but works for gcc) See also http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system
2018-06-20Replace typedef struct with struct in POD type declarations.Emmanuel Gil Peyrot1-2/+3
2018-01-07Fix typoMarc Jeanmougin1-1/+1
2018-01-07Improve FileSave dialogMarc Jeanmougin1-2/+2
2017-11-07Misc. typosUnknown1-2/+2
Found using `codespell -q 3 -w --skip="*.svg,*.po,*.ts,./share/tutorials,./src/libavoid,./packaging/win32/languages,./man,./src/2geom" -I ../inkscape-whitelist.txt` whereby whitelist file contained: ``` dum iff glight substract te upto ```
2017-09-15Add default extension for native win32 file save dialog.Eduard Braun1-0/+1
We manually appended an extension already (so functionality does not change), however GetSaveFileNameW also adds the chosen name (which was the name without extension before) to the list of recently used documents which resulted in unusable links.
2017-06-20Do not strip file extension in CUSTOM_TYPE Windows native file save dialogsEduard Braun1-4/+9
(Usually we append the proper extension afterwards, but that does only work for registered extensions and not custom extensions. The resulting behavior was that a file saved this way had usually no extension at all unless the user added one manually...)
2017-06-20Fix a crash in CUSTOM_TYPE Windows native file save dialogsEduard Braun1-6/+6
Fixed bugs: - https://bugs.launchpad.net/inkscape/+bug/1639701
2017-03-02Add units (px) to size being shown in native Windows file open dialog and ↵Eduard Braun1-12/+3
fix wrong size being shown for EMF/WMF files (bzr r15560)
2017-03-01Fix for native Windows file open dialog only showing the first character of ↵Eduard Braun1-2/+2
the file name below the preview. There seems to be some confusion wheter the type specifier "%s" means char or wchar and the behavior even changes between different versions of MinGW (bzr r15559)
2017-03-01Fix SVG file preview in Windows native file open dialog.Eduard Braun1-103/+32
Fixed bugs: - https://launchpad.net/bugs/802904 (bzr r15558)
2017-02-28Fix encoding issues with title field in native Windows file save dialog.Eduard Braun1-6/+6
We were neither using Unicode versions of the WinAPI function nor properly converting character encodings which resultet in garbled output in the title field in the best case and invalid SVG output in the worst case. Fixed bugs: - https://launchpad.net/bugs/576126 - https://launchpad.net/bugs/1627551 (bzr r15557)
2016-07-28Drop remaining GTKMM 2 fallback supportAlex Valavanis1-4/+0
(bzr r15023.2.7)
2015-03-10remember status of preview pane in native Windows open dialog. (Bug 1428873)Alvin Penner1-0/+8
Fixed bugs: - https://launchpad.net/bugs/1428873 (bzr r13985)
2015-02-16i18nKris De Gussem1-1/+1
(bzr r13925)
2014-09-27Update to experimental r13565Liam P. White1-1/+1
(bzr r13341.5.16)
2014-09-07Update to experimental r13543Liam P. White1-1/+1
(bzr r13090.1.108)
2014-09-02Remove misleading dialogs directoryLiam P. White1-1/+1
(bzr r13341.1.192)
2014-05-15make windows filedialog's code more portable for different mingw versions ↵Johan B. C. Engelen1-10/+2
(failed on 64bit) (bzr r13341.1.26)
2014-05-15make windows filedialog's code more portable for different mingw versions ↵Johan B. C. Engelen1-9/+2
(failed on 64bit) (bzr r13380)
2013-05-16Win32. More include fixes for glibmm 2.36 (file dialog).Nicolas Dufour1-2/+2
(bzr r12337)
2013-05-15Win32. Fixing some more include issues (glibmm threads depracation).Nicolas Dufour1-3/+1
(bzr r12336)
2013-02-05Win32. Fixing Glib and GTKmm deprecations.Nicolas Dufour1-1/+21
(bzr r12102)
2012-11-25Fix for 1036059 : Keyboard shortcut editorJohn Smith1-2/+70
(bzr r11895)
2012-07-15Fix for 1023655 : Improvments to Embedded script UIJohn Smith1-0/+62
(bzr r11549)
2012-04-11fix deprecated glib thingieJohan B. C. Engelen1-1/+1
(bzr r11227)
2012-04-04UI. Fix for Bug #437521 (Save As dialog should be resizable in Windows) by ↵Nicolas Dufour1-1/+1
Jaroslaw M. Gliwinski. (bzr r11150)
2012-02-15fix warningJohan B. C. Engelen1-1/+1
(bzr r10980)
2012-02-08(cppcheck and janitorial tasks:) C-style casting to C++-style castingKris De Gussem1-18/+18
(bzr r10952)
2012-02-07Cleaning up my mess... backward compatibility and fix Windows build (hopefully)Alex Valavanis1-0/+1
Fixed bugs: - https://launchpad.net/bugs/927992 (bzr r10947)
2012-01-02win32 saving: clean up filename handling on opening save dialogJohan B. C. Engelen1-2/+11
(bzr r10820)
2011-10-18cppcheckKris De Gussem1-4/+4
(bzr r10681)
2011-10-03Doxygen cleanup.Jon A. Cruz1-2/+3
(bzr r10660)
2011-08-27Refactor SPItem bounding box methods: remove NRRect usage and make codeKrzysztof Kosi??ski1-3/+1
using them more obvious. Fix filter region computation. (bzr r10582.1.1)
2011-08-26remove double backslash in pathname (Bug 805095)Alvin Penner1-0/+2
Fixed bugs: - https://launchpad.net/bugs/805095 (bzr r10583)
2011-08-07Rewrite NRArena -> Inkscape::Drawing. Call render and updateKrzysztof Kosi??ski1-2/+2
methods on the Drawing rather than on the root DrawingItem. (bzr r10347.1.25)
2011-07-17- rename SPItem::i2d_affine to i2dt_affine, to clarify that it is ↵Johan B. C. Engelen1-1/+1
item-to-desktop, not item-to-document. This should make it easier to spot bugs. - tag some instances where the document-to-desktop transform has been hardcoded (bzr r10466)
2011-06-04Possible Win32 compile fix.Jon A. Cruz1-17/+20
(bzr r10256)
2011-03-15automatically enter current filename in windows save as dialog.Johan B. C. Engelen1-0/+11
Fixed bugs: - https://launchpad.net/bugs/530957 (bzr r10107)
2011-02-21Preferences. New bitmap editor selector (fixes Bug #262617, Edit externally ↵Nicolas Dufour1-166/+217
doesn't work on Windows). Fixed bugs: - https://launchpad.net/bugs/262617 (bzr r10062)
2011-02-02update to latest 2geom !Johan B. C. Engelen1-1/+1
(bzr r10025)
2010-12-15Win32 post-GSoC fixups.Jon A. Cruz1-6/+6
(bzr r9953)
2010-11-17Super duper mega (fun!) commit: replaced encoding=utf-8 with ↵Chris Morgan1-1/+1
fileencoding=utf-8 in all 1074 Vim modelines. The reason for this is that (a) setting the encoding isn't nice, and (b) Vim 7.3 (with modeline enabled) disallows it and pops up an error whenever you open any file with it ("invalid modeline"). Also corrected five deviant modestrings: * src/ui/widget/dock.cpp and src/ui/widget/dock.h: missing colon at the end * src/ui/dialog/tile.cpp: removed gratuitous second colon at the end * src/helper/units-test.h: removed gratuitous space before a colon * share/extensions/export_gimp_palette.py: missing textwidth=99 That's my geekiest commit yet. (bzr r9900)