home *** CD-ROM | disk | FTP | other *** search
- /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
- *
- * The contents of this file are subject to the Netscape Public License
- * Version 1.0 (the "NPL"); you may not use this file except in
- * compliance with the NPL. You may obtain a copy of the NPL at
- * http://www.mozilla.org/NPL/
- *
- * Software distributed under the NPL is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
- * for the specific language governing rights and limitations under the
- * NPL.
- *
- * The Initial Developer of this code under the NPL is Netscape
- * Communications Corporation. Portions created by Netscape are
- * Copyright (C) 1998 Netscape Communications Corporation. All Rights
- * Reserved.
- */
- /*
- OptionFolderView.h -- class definition for OptionFolderView
- Created: Dora Hsu<dora@netscape.com>, 23-Sept-96.
- */
-
-
-
- #ifndef _xfe_optionfolderview_h
- #define _xfe_optionfolderview_h
-
- #include "MNView.h"
- #include "msgcom.h"
- #include <Xm/Xm.h>
-
- typedef enum
- {
- MSG_TextEncodingNotSet = 0,
- MSG_8bit = 1,
- MSG_MimeCompliant
- }MSG_TEXT_ENCODING;
-
- typedef enum
- {
- MSG_BinaryEncodingNotSet = 0,
- MSG_Mime = 1,
- MSG_UUencode
- }MSG_BINARY_ENCODING;
-
-
- class XFE_OptionFolderView: public XFE_MNView
- {
- public:
- XFE_OptionFolderView(XFE_Component *toplevel_component,
- XFE_View *parent_view,
- MSG_Pane *p = NULL,
- MWContext *context = NULL);
-
- virtual ~XFE_OptionFolderView();
- void createWidgets(Widget parent);
- Boolean isPrioritySelected(MSG_PRIORITY priority);
- void selectPriority(MSG_PRIORITY priority);
- void selectTextEncoding(MSG_TEXT_ENCODING priority);
- void selectBinaryEncoding(MSG_BINARY_ENCODING priority);
- void updateAllOptions();
- protected:
- static void selectPriorityCallback(Widget w, XtPointer client, XtPointer);
- static void returnReceiptChangeCallback(Widget w, XtPointer client, XtPointer);
- static void encryptedChangeCallback(Widget w, XtPointer client, XtPointer);
- static void signedChangeCallback(Widget w, XtPointer client, XtPointer);
- static void selectTextEncodingCallback(Widget w, XtPointer client, XtPointer);
- static void selectBinaryEncodingCallback(Widget w, XtPointer client, XtPointer);
- void handleReturnReceipt(Boolean set);
- void handleEncrypted(Boolean set);
- void handleSigned(Boolean set);
- private:
- Boolean m_bSigned; // Not used for now
- Boolean m_bEncrypted; // Not used for now
- Boolean m_bReturnReceipt; // Not used for now
- Widget m_optionW;
- Widget m_textEncodingOptionW;
- Widget m_binaryEncodingOptionW;
- Widget m_returnReceiptW;
- Widget m_encryptedW;
- Widget m_signedW;
- MSG_PRIORITY m_selectedPriority;
- XFE_CALLBACK_DECL(updateSecurityOption)
- };
-
- #endif
-
-