mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-24 22:29:47 +01:00
106 lines
3.0 KiB
C++
106 lines
3.0 KiB
C++
//
|
|
// TimeFieldCell.h
|
|
//
|
|
// $Id: //poco/Main/WebWidgets/include/Poco/WebWidgets/TimeFieldCell.h#2 $
|
|
//
|
|
// Library: WebWidgets
|
|
// Package: Controls
|
|
// Module: TimeFieldCell
|
|
//
|
|
// Definition of the TimeFieldCell class.
|
|
//
|
|
// Copyright (c) 2007, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person or organization
|
|
// obtaining a copy of the software and accompanying documentation covered by
|
|
// this license (the "Software") to use, reproduce, display, distribute,
|
|
// execute, and transmit the Software, and to prepare derivative works of the
|
|
// Software, and to permit third-parties to whom the Software is furnished to
|
|
// do so, all subject to the following:
|
|
//
|
|
// The copyright notices in the Software and this entire statement, including
|
|
// the above license grant, this restriction and the following disclaimer,
|
|
// must be included in all copies of the Software, in whole or in part, and
|
|
// all derivative works of the Software, unless such copies or derivative
|
|
// works are solely in the form of machine-executable object code generated by
|
|
// a source language processor.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
|
|
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
|
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
|
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
// DEALINGS IN THE SOFTWARE.
|
|
//
|
|
|
|
|
|
#ifndef WebWidgets_TimeFieldCell_INCLUDED
|
|
#define WebWidgets_TimeFieldCell_INCLUDED
|
|
|
|
|
|
#include "Poco/WebWidgets/TextFieldCell.h"
|
|
#include "Poco/WebWidgets/TimeField.h"
|
|
#include "Poco/DateTime.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace WebWidgets {
|
|
|
|
|
|
class WebWidgets_API TimeFieldCell: public TextFieldCell
|
|
/// A cell for a TimeField
|
|
{
|
|
public:
|
|
typedef Poco::AutoPtr<TimeFieldCell> Ptr;
|
|
|
|
TimeFieldCell(View* pOwner);
|
|
/// Creates the TimeFieldCell.
|
|
|
|
virtual ~TimeFieldCell();
|
|
/// Destroys the TimeFieldCell.
|
|
|
|
TimeField::Format getFormat() const;
|
|
/// Returns the time format
|
|
|
|
void setFormat(TimeField::Format fmt);
|
|
/// Sets the time format
|
|
|
|
void setTime(const Poco::DateTime& dt);
|
|
/// Sets the date
|
|
|
|
const Poco::DateTime& getTime() const;
|
|
/// returns the time if set, otherwise an exception, use getValue().empty() to check if it is valid
|
|
|
|
bool serializeJSON(std::ostream& out, const std::string& name);
|
|
|
|
private:
|
|
std::string _format;
|
|
TimeField::Format _fmt;
|
|
};
|
|
|
|
|
|
inline TimeField::Format TimeFieldCell::getFormat() const
|
|
{
|
|
return _fmt;
|
|
}
|
|
|
|
|
|
inline void TimeFieldCell::setTime(const Poco::DateTime& dt)
|
|
{
|
|
setValue(dt);
|
|
}
|
|
|
|
|
|
inline const Poco::DateTime& TimeFieldCell::getTime() const
|
|
{
|
|
return RefAnyCast<Poco::DateTime>(getValue());
|
|
}
|
|
|
|
|
|
} } // namespace Poco::WebWidgets
|
|
|
|
|
|
#endif // WebWidgets_TimeFieldCell_INCLUDED
|