How it is going to end: - Exists a configure option called --enable-kpdf-drm that is DISABLE by default and you can use to FORCE kpdf obeying DRM - Exists a kiosk option called skip_drm that is true by default and the admin can set to TRUE to FORCE kdpf obeying DRM - Exists a GUI option called Obey pdf limitations that is shown if skip_drm is true, that option is ON by default, that means DRM is obeyed but the user can disable it from the GUI Hope that will please everyone Please can somebody with better english than me check that the wording i used is actually correct english? Thanks svn path=/trunk/kdegraphics/kpdf/; revision=394212remotes/origin/kpdf-kde4
parent
02b3ab70f1
commit
1eed94c3d6
6 changed files with 41 additions and 3 deletions
@ -0,0 +1,19 @@ |
||||
/****************************************************************************
|
||||
** ui.h extension file, included from the uic-generated form implementation. |
||||
** |
||||
** If you want to add, delete, or rename functions or slots, use |
||||
** Qt Designer to update this file, preserving your code. |
||||
** |
||||
** You should not define a constructor or destructor in this file. |
||||
** Instead, write your code in functions called init() and destroy(). |
||||
** These will automatically be called by the form's constructor and |
||||
** destructor. |
||||
*****************************************************************************/ |
||||
|
||||
#include <kapplication.h> |
||||
|
||||
void DlgGeneral::showEvent( QShowEvent * ) |
||||
{ |
||||
if (kapp->authorize("skip_drm")) kcfg_ObeyDRM->show(); |
||||
else kcfg_ObeyDRM->hide(); |
||||
} |
||||
Loading…
Reference in new issue