mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
109 lines
2.7 KiB
C
109 lines
2.7 KiB
C
/* -*- Mode: C++; tab-width: 8; 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.
|
|
*/
|
|
|
|
/*
|
|
stubloc.c --- stub fe handling of locale specific stuff.
|
|
*/
|
|
|
|
#include "xplocale.h"
|
|
|
|
#include "structs.h"
|
|
#include "ntypes.h"
|
|
#include "xpassert.h"
|
|
#include "proto.h"
|
|
#include "fe_proto.h"
|
|
|
|
#include "libi18n.h"
|
|
|
|
#include "csid.h"
|
|
|
|
/*
|
|
** FE_StrfTime - format a struct tm to a character string, depending
|
|
** on the value of the format parameter.
|
|
**
|
|
** Values for format (and their mapping to unix strftime format
|
|
** strings) include:
|
|
**
|
|
** XP_TIME_FORMAT - "%H:%M"
|
|
** XP_WEEKDAY_TIME_FORMAT - "%a %H:%M"
|
|
** XP_DATE_TIME_FORMAT - "%x %H:%M"
|
|
** XP_LONG_DATE_TIME_FORMAT - "%c"
|
|
** anything else - "%c"
|
|
*/
|
|
size_t
|
|
FE_StrfTime(MWContext *context,
|
|
char *result,
|
|
size_t maxsize,
|
|
int format,
|
|
const struct tm *timeptr)
|
|
{
|
|
}
|
|
|
|
/*
|
|
** FE_StrColl - call into the platform specific strcoll function.
|
|
**
|
|
** Make sure strcoll() or equivalent works properly. For example,
|
|
** the XFE has a check to make sure it does work, and if it doesn't
|
|
** it defaults to strcasecmp.
|
|
*/
|
|
int
|
|
FE_StrColl(const char *s1, const char *s2)
|
|
{
|
|
}
|
|
|
|
/*
|
|
** INTL_ResourceCharSet - return the ascii name for the locale's
|
|
** character set id.
|
|
**
|
|
** Use INTL_CharSetIDToName to retrieve the name given a CSID.
|
|
**
|
|
** Note: This is a silly function, IMO. It should just return the
|
|
** CSID, and the libi18n stuff could convert it to a name if it wants
|
|
** to.
|
|
*/
|
|
char *
|
|
INTL_ResourceCharSet()
|
|
{
|
|
}
|
|
|
|
/*
|
|
** INTL_DefaultDocCharSetID - return the default character set id for
|
|
** a given context.
|
|
**
|
|
** It should first try to extract the csid from the document being shown in
|
|
** the context. using LO_GetDocumentCharacterSetInfo and INTL_GetCSIDocCSID.
|
|
**
|
|
** If this fails, and the user has specified an encoding (using the View|Encoding
|
|
** menu, is should return the CSID for that.
|
|
**
|
|
** Otherwise, it should return the FE's default preference for CSID.
|
|
*/
|
|
int16
|
|
INTL_DefaultDocCharSetID(MWContext *cxt)
|
|
{
|
|
}
|
|
|
|
/*
|
|
** INTL_Relayout - relayout a given context, as the character encoding
|
|
** has changed.
|
|
*/
|
|
void
|
|
INTL_Relayout(MWContext *pContext)
|
|
{
|
|
}
|