169 lines
4.0 KiB
C
169 lines
4.0 KiB
C
/*
|
|
* CDE - Common Desktop Environment
|
|
*
|
|
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
|
|
*
|
|
* These libraries and programs are free software; you can
|
|
* redistribute them and/or modify them under the terms of the GNU
|
|
* Lesser General Public License as published by the Free Software
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* These libraries and programs are distributed in the hope that
|
|
* they will be useful, but WITHOUT ANY WARRANTY; without even the
|
|
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU Lesser General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with these libraries and programs; if not, write
|
|
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
|
|
* Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
/* $XConsortium: DtProps.C /main/2 1995/07/17 14:03:51 drk $ */
|
|
/* *
|
|
* (c) Copyright 1993, 1994 Hewlett-Packard Company *
|
|
* (c) Copyright 1993, 1994 International Business Machines Corp. *
|
|
* (c) Copyright 1993, 1994 Sun Microsystems, Inc. *
|
|
* (c) Copyright 1993, 1994 Novell, Inc. *
|
|
*/
|
|
|
|
#include "DtProps.h"
|
|
#include "DtMainW.h"
|
|
#include "Button.h"
|
|
#include "Prompt.h"
|
|
#include "LabelObj.h"
|
|
#include "Container.h"
|
|
#include "BaseObj.h"
|
|
|
|
#include "dtprintinfomsg.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
DtProps::DtProps(AnyUI *parent,
|
|
char *name,
|
|
char *location_id,
|
|
boolean editable,
|
|
int n_attributes,
|
|
Attribute **attributes)
|
|
: Dialog(parent, name)
|
|
{
|
|
mainw = (DtMainW *) parent;
|
|
_location_id = location_id;
|
|
_has_been_posted = false;
|
|
rc = new Container(this, "rc", VERTICAL_ROW_COLUMN);
|
|
int i, captionWidth = 0, width, columns = 0;
|
|
for (i = 0; i < n_attributes; i++)
|
|
{
|
|
if ((width = StringWidth(attributes[i]->DisplayName)) > captionWidth)
|
|
captionWidth = width;
|
|
if ((width = strlen(attributes[i]->DisplayValue)) > columns)
|
|
columns = width;
|
|
}
|
|
|
|
for (i = 0; i < n_attributes; i++)
|
|
{
|
|
boolean _editable;
|
|
if (EditableAfterCreate(attributes[i]))
|
|
_editable = true;
|
|
else
|
|
_editable = false;
|
|
if (attributes[i]->ValueListType == INFORMATION_LINE)
|
|
new LabelObj(rc, attributes[i]->DisplayName);
|
|
else
|
|
new Prompt(rc, attributes[i]->DisplayName, _editable, STRING_PROMPT,
|
|
attributes[i]->DisplayValue, NULL,
|
|
NULL, true, columns, 1, captionWidth + 8);
|
|
}
|
|
|
|
ok = new Button(this, MESSAGE(OKL), PUSH_BUTTON, OkCB, this);
|
|
if (editable)
|
|
{
|
|
cancel = new Button(this, MESSAGE(CancelL), PUSH_BUTTON, CancelCB, this);
|
|
CancelButton(cancel);
|
|
}
|
|
else
|
|
CancelButton(ok);
|
|
help = new Button(this, MESSAGE(HelpL), PUSH_BUTTON, HelpCB, this);
|
|
rc->AttachAll();
|
|
DefaultButton(ok);
|
|
}
|
|
|
|
DtProps::~DtProps()
|
|
{
|
|
// Empty
|
|
}
|
|
|
|
boolean DtProps::SetVisiblity(boolean flag)
|
|
{
|
|
if (_has_been_posted == false)
|
|
{
|
|
Dialog::SetVisiblity(flag);
|
|
Refresh();
|
|
int width = StringWidth(Name()) + 35;
|
|
if (Width() < width)
|
|
{
|
|
Dialog::SetVisiblity(flag);
|
|
Width(width);
|
|
}
|
|
_has_been_posted = true;
|
|
}
|
|
Dialog::SetVisiblity(flag);
|
|
return true;
|
|
}
|
|
|
|
void DtProps::Reset()
|
|
{
|
|
}
|
|
|
|
void DtProps::Apply()
|
|
{
|
|
}
|
|
|
|
void DtProps::CloseCB()
|
|
{
|
|
Reset();
|
|
Visible(false);
|
|
}
|
|
|
|
void DtProps::OkCB(void *data)
|
|
{
|
|
DtProps *obj = (DtProps *) data;
|
|
|
|
obj->Apply();
|
|
obj->Visible(false);
|
|
}
|
|
|
|
void DtProps::ApplyCB(void *data)
|
|
{
|
|
DtProps *obj = (DtProps *) data;
|
|
obj->Apply();
|
|
}
|
|
|
|
void DtProps::CancelCB(void *data)
|
|
{
|
|
DtProps *obj = (DtProps *) data;
|
|
|
|
obj->Reset();
|
|
obj->Visible(false);
|
|
}
|
|
|
|
void DtProps::ResetCB(void *data)
|
|
{
|
|
DtProps *obj = (DtProps *) data;
|
|
|
|
obj->Reset();
|
|
}
|
|
|
|
void DtProps::HelpCB(void *data)
|
|
{
|
|
DtProps *obj = (DtProps *) data;
|
|
obj->HandleHelpRequest();
|
|
}
|
|
|
|
boolean DtProps::HandleHelpRequest()
|
|
{
|
|
mainw->DisplayHelp(_location_id);
|
|
return true;
|
|
}
|