mirror of
https://review.haiku-os.org/haiku
synced 2025-02-02 19:57:42 +01:00
2a5e33a980
* There is a little code duplication. This will be moved to BFormat once the time and datetime formatting is also moved out of BLocale * The way to create a BDateFormat from a BLocale is still open for discussion. I'm undecided between making BDateFormat a member of BLocale, or adding a BDateFormat(const BLocale&) constructor. * Adjust all users of the API.
47 lines
958 B
C++
47 lines
958 B
C++
/*
|
|
* Copyright 2010-2014, Haiku, Inc.
|
|
* Distributed under the terms of the MIT Licence.
|
|
*/
|
|
#ifndef _B_DATE_TIME_FORMAT_H_
|
|
#define _B_DATE_TIME_FORMAT_H_
|
|
|
|
|
|
#include <Format.h>
|
|
#include <FormatParameters.h>
|
|
|
|
|
|
class BString;
|
|
|
|
|
|
enum BDateElement {
|
|
B_DATE_ELEMENT_INVALID = B_BAD_DATA,
|
|
B_DATE_ELEMENT_YEAR = 0,
|
|
B_DATE_ELEMENT_MONTH,
|
|
B_DATE_ELEMENT_DAY,
|
|
B_DATE_ELEMENT_AM_PM,
|
|
B_DATE_ELEMENT_HOUR,
|
|
B_DATE_ELEMENT_MINUTE,
|
|
B_DATE_ELEMENT_SECOND
|
|
};
|
|
|
|
|
|
class BDateTimeFormat : public BFormat {
|
|
public:
|
|
BDateTimeFormat();
|
|
BDateTimeFormat(const BDateTimeFormat &other);
|
|
virtual ~BDateTimeFormat();
|
|
|
|
// formatting
|
|
|
|
// no-frills version: Simply appends the
|
|
// formatted date to the string buffer.
|
|
// Can fail only with B_NO_MEMORY or
|
|
// B_BAD_VALUE.
|
|
virtual status_t Format(bigtime_t value, BString* buffer) const;
|
|
|
|
// TODO: ... basically, all of it!
|
|
};
|
|
|
|
|
|
#endif // _B_DATE_TIME_FORMAT_H_
|