Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
1.8 KiB

  1. /**********************************************************************/
  2. /** Microsoft Windows NT **/
  3. /** Copyright(c) Microsoft Corp., 1993 **/
  4. /**********************************************************************/
  5. /*
  6. nwc.hxx
  7. Class declarations for the NWC applet
  8. FILE HISTORY:
  9. ChuckC 17-Jul-1993 Created
  10. */
  11. #ifndef _NWC_HXX_
  12. #define _NWC_HXX_
  13. #include <security.hxx>
  14. /*************************************************************************
  15. NAME: NWC_DIALOG
  16. SYNOPSIS: This is the NWC applet main dialog.
  17. INTERFACE: NWC_DIALOG() - Class constructor.
  18. ~NWC_DIALOG() - Class destructor.
  19. PARENT: DIALOG_WINDOW
  20. USES:
  21. HISTORY:
  22. ChuckC 17-Jul-1992 Created
  23. **************************************************************************/
  24. class NWC_DIALOG: public DIALOG_WINDOW
  25. {
  26. private:
  27. COMBOBOX _comboPreferredServers ;
  28. CHECKBOX _chkboxFormFeed ;
  29. CHECKBOX _chkboxPrintNotify ;
  30. CHECKBOX _chkboxPrintBanner ;
  31. CHECKBOX _chkboxLogonScript ;
  32. SLT _sltCurrentPreferredServer ;
  33. SLT _sltUserName ;
  34. PUSH_BUTTON _pbOverview ;
  35. MAGIC_GROUP _mgrpPreferred ;
  36. SLE _sleContext ;
  37. COMBOBOX _comboTree ;
  38. NLS_STR _nlsOldPreferredServer;
  39. DWORD _dwOldPrintOptions;
  40. DWORD _dwOldLogonScriptOptions;
  41. VOID OnNWCHelp();
  42. protected:
  43. virtual BOOL OnOK();
  44. virtual BOOL OnCommand( const CONTROL_EVENT & event );
  45. virtual ULONG QueryHelpContext( VOID );
  46. APIERR FillPreferredServersCombo(void) ;
  47. public:
  48. NWC_DIALOG( HWND hwndOwner ) ;
  49. ~NWC_DIALOG();
  50. };
  51. #endif // _NWC_HXX_