Ignore:
Timestamp:
Sep 18, 2016, 2:29:03 AM (9 years ago)
Author:
Gregg Young
Message:

Added "help" menu items and added context sensitive help to the dialogs. F1 brings up help most everywhere. Ticket #12 Prevent thumbnail creation on encrypted files. Make thumbnail optional globally and on a per file basis. Tickets #263 #267

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/Lucide/gui/printDlg.cpp

    r523 r563  
    4646#include "luutils.h"
    4747#include "messages.h"
    48 
     48#include "Lucide.h"
    4949
    5050char PrintDlg::defQueue[] = { 0 };
     
    540540            localizeDialog( hwnd );
    541541            centerWindow( _this->hFrame, hwnd );
     542
     543            // setup the accelerators
     544            WinSetAccelTable( hab, WinLoadAccelTable( hab, _hmod, IDA_ADDHELPACCEL ), hwnd );
    542545
    543546            // Page range
     
    852855                    WinDismissDlg( hwnd, DID_CANCEL );
    853856                    return (MRESULT)FALSE;
     857
     858                case CM_HELP:
     859                  if (Lucide::hwndHelp)
     860                      WinSendMsg(Lucide::hwndHelp,HM_DISPLAY_HELP,
     861                                 MPFROM2SHORT(104, 0), MPFROMSHORT(HM_RESOURCEID));
     862                  return (MRESULT)FALSE;
    854863            };
    855864            return (MRESULT)FALSE;
Note: See TracChangeset for help on using the changeset viewer.