summaryrefslogtreecommitdiffstats
path: root/src/pwgui/pwgui.cpp
Commit message (Collapse)AuthorAgeFilesLines
* constSimon Rettberg2021-04-301-2/+2
|
* [pwgui] Focus password field by default, react to return key in text boxesSimon Rettberg2016-12-211-0/+3
|
* [pwgui] Also use the grayed out fake backgroundSimon Rettberg2015-10-091-2/+3
|
* Consistent code formattingSimon Rettberg2015-02-031-37/+39
|
* Bring windows to top more agressivelySimon Rettberg2015-02-031-0/+4
|
* Forgot headerSimon Rettberg2014-02-071-0/+1
|
* Implement writing filled out form back to pipeSimon Rettberg2014-02-071-17/+22
|
* Getting there, slowly:Simon Rettberg2014-02-071-6/+12
| | | | | | | | | | | - Check if the backend is invoked as a result of the printergui sending a printjob If not, just relay to the real backend and appear transparent If yes, copy environment from the printergui (X access etc) and show the username/password dialog. - Drop privileges whereever neccessary (when invoking backend, when showing GUI) TODO: Use pipe to send user/pass to backend from the GUI. Make OK and Cancel in the GUI work.
* Lots of changes: Two binaries (selection/pw auth), qmake -> cmake, ↵Simon Rettberg2014-02-061-0/+59
gitignore, more error handling 1. We now have two binaries: One pops up when the print job comes in so you can select the printer, duplex, copies, etc... The other one pops up when used as a backend and handles authentication by asking for username and password (WORK IN PROGRESS!). This is to better handle things like smb printing 2. We use cmake everywhere, and now that we want two binaries it made sense to switch. 3. Gitignore, well, what to say 4. Show an error message when calling ghostscript for grayscale conversion failed, insted of just doing nothing and not even closing the GUI. 5. Keep the printergui open for a few seconds after printing, but hide the window. Later we want to check in the password gui if the printergui is open to make sure we really should run, and maybe even exchange some information.