No code changes, only comments. Makes the xfe LXR pages better. Approved by don. Thanks do Dawn Endico <dawn@cannibal.mi.org> for providing the patch. git-svn-id: svn://10.0.0.236/trunk@5087 18797224-902f-48f8-a5cc-f745e15eee43
139 lines
3.2 KiB
C++
139 lines
3.2 KiB
C++
/* -*- 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 "License"); you may not use this file except in
|
|
* compliance with the License. You may obtain a copy of the License at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS IS"
|
|
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
|
|
* the License for the specific language governing rights and limitations
|
|
* under the License.
|
|
*
|
|
* The Original Code is Mozilla Communicator client code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
|
* Corporation. Portions created by Netscape are Copyright (C) 1996
|
|
* Netscape Communications Corporation. All Rights Reserved.
|
|
*/
|
|
|
|
/* -*- Mode: C++; tab-width: 4 -*-
|
|
XmLFolderDialog.cpp -- class definition for XFE_XmLFolderDialog
|
|
Created: Tao Cheng <tao@netscape.com>, 12-nov-96
|
|
*/
|
|
|
|
#include "XmLFolderDialog.h"
|
|
#include "XmLFolderView.h"
|
|
|
|
//
|
|
// This is the dialog it self
|
|
//
|
|
XFE_XmLFolderDialog::XFE_XmLFolderDialog(XFE_View *view,
|
|
Widget parent,
|
|
char *name,
|
|
MWContext *context,
|
|
Boolean ok,
|
|
Boolean cancel,
|
|
Boolean help,
|
|
Boolean apply,
|
|
Boolean separator,
|
|
Boolean modal):
|
|
XFE_ViewDialog(view,
|
|
parent,
|
|
name,
|
|
context,
|
|
ok,
|
|
cancel,
|
|
help,
|
|
apply,
|
|
separator,
|
|
modal)
|
|
{
|
|
|
|
/* 1. Dialog frame is created in XFE_ViewDialog::XFE_ViewDialog
|
|
*/
|
|
m_clientData = 0;
|
|
|
|
/* 2. Create a folder view. m_chrome is the dialog widget
|
|
*/
|
|
XFE_XmLFolderView *folderview =
|
|
new XFE_XmLFolderView(this /* topComponent */, m_chrome,
|
|
0, 0);
|
|
|
|
folderview->show();
|
|
|
|
//
|
|
// we don't want a default value, since return does other stuff for
|
|
// us.
|
|
XtVaSetValues(m_chrome, /* the dialog */
|
|
XmNdefaultButton, NULL,
|
|
NULL);
|
|
|
|
/* set and show view
|
|
*/
|
|
setView(folderview);
|
|
|
|
|
|
}
|
|
|
|
XFE_XmLFolderDialog::~XFE_XmLFolderDialog()
|
|
{
|
|
/* 100892: Caldera: address book problem causes continuous loop
|
|
* reset flag to leave fe_eventloop()
|
|
*/
|
|
if (m_clientData)
|
|
*m_clientData = (ANS_t) eCANCEL;
|
|
}
|
|
|
|
void XFE_XmLFolderDialog::setDlgValues()
|
|
{
|
|
if (m_view)
|
|
((XFE_XmLFolderView *) m_view)->setDlgValues();
|
|
#if defined(DEBUG_tao_)
|
|
else
|
|
printf("\n***[XFE_XmLFolderDialog::setDlgValues] m_view is not set!");
|
|
#endif
|
|
}
|
|
|
|
void XFE_XmLFolderDialog::getDlgValues()
|
|
{
|
|
if (m_view)
|
|
((XFE_XmLFolderView *) m_view)->getDlgValues();
|
|
#if defined(DEBUG_tao_)
|
|
else
|
|
printf("\n***[XFE_XmLFolderDialog::setDlgValues] m_view is not set!");
|
|
#endif
|
|
}
|
|
|
|
void XFE_XmLFolderDialog::cancel()
|
|
{
|
|
// default setting
|
|
if (m_clientData)
|
|
*m_clientData = (ANS_t) eCANCEL;
|
|
else
|
|
hide();
|
|
}
|
|
|
|
void XFE_XmLFolderDialog::apply()
|
|
{
|
|
|
|
// default setting
|
|
if (m_clientData)
|
|
*m_clientData = (ANS_t) eAPPLY;
|
|
|
|
if (m_view)
|
|
((XFE_XmLFolderView *) m_view)->apply();
|
|
}
|
|
|
|
void XFE_XmLFolderDialog::ok()
|
|
{
|
|
// default setting
|
|
if (m_clientData)
|
|
*m_clientData = (ANS_t) eAPPLY;
|
|
|
|
apply();
|
|
|
|
if (!m_clientData && m_okToDestroy)
|
|
hide();
|
|
}
|