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.
- */
- /*
- NewsPromptDialog.h -- dialog for letting the user specify how many articles to download
- Created: Chris Toshok <toshok@netscape.com>, 2-Mar-97.
- */
-
-
-
- #ifndef _xfe_newsserverdialog_h
- #define _xfe_newsserverdialog_h
-
- #include "xp_core.h"
- #include "Dialog.h"
-
- class XFE_NewsPromptDialog: public XFE_Dialog
- {
- public:
- XFE_NewsPromptDialog(Widget parent,
- int numMessages);
-
- virtual ~XFE_NewsPromptDialog();
-
- /* changes the delete response to UNMAP so we can keep the
- dialog around after it's popped down, and returns True
- if Ok was pressed, and False otherwise (either cancel or
- the WM close button was pressed.
-
- This method calls fe_eventLoop so we can return with the
- user's response from here.
-
- since we UNMAP instead of DESTROY, you need to delete the
- instance after you're through with it.*/
- XP_Bool post();
-
- XP_Bool getDownloadAll();
-
- private:
- XP_Bool m_retVal;
- XP_Bool m_downloadall;
- XP_Bool m_doneWithLoop;
-
- Widget m_label;
-
- Widget m_alltoggle;
- Widget m_nummessages_toggle;
- Widget m_nummessages_text;
- Widget m_nummessages_caption;
- Widget m_markothersread_toggle;
-
- void ok();
- void cancel();
- void toggle(Widget, XtPointer);
- void toggle_markread();
-
- static void ok_cb(Widget, XtPointer, XtPointer);
- static void cancel_cb(Widget, XtPointer, XtPointer);
- static void toggle_cb(Widget, XtPointer, XtPointer);
- static void toggle_markread_cb(Widget, XtPointer, XtPointer);
- };
-
- #endif /* _xfe_newsserverdialog_h */
-