Yaaic/application/src/org/yaaic/model/Settings.java

173 lines
4.1 KiB
Java
Raw Normal View History

2010-03-13 13:56:42 -05:00
/*
Yaaic - Yet Another Android IRC Client
Copyright 2009-2010 Sebastian Kaspari
This file is part of Yaaic.
Yaaic is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Yaaic is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
*/
package org.yaaic.model;
import org.yaaic.R;
import android.content.Context;
import android.content.SharedPreferences;
import android.content.res.Resources;
import android.preference.PreferenceManager;
/**
* The settings class is a helper class to access the different preferences via
* small and simple methods.
*
* Note: As this class carries a Context instace as private member, instances of
* this class should be thrown away not later than when the Context should
* be gone. Otherwise this could leak memory.
*
* @author Sebastian Kaspari <sebastian@yaaic.org>
*/
2010-03-13 13:56:42 -05:00
public class Settings
{
private SharedPreferences preferences;
private Resources resources;
/**
* Create a new Settings instance
*
* @param context
*/
public Settings(Context context)
{
this.preferences = PreferenceManager.getDefaultSharedPreferences(context);
this.resources = context.getApplicationContext().getResources();
}
/**
* Prefix all messages with a timestamp?
*
* @return
*/
public boolean showTimestamp()
{
return preferences.getBoolean(
resources.getString(R.string.key_show_timestamp),
Boolean.parseBoolean(resources.getString(R.string.default_show_timestamp))
);
}
/**
* Show icons to highlight special events
*
* @return
*/
public boolean showIcons()
{
return preferences.getBoolean(
resources.getString(R.string.key_show_icons),
Boolean.parseBoolean(resources.getString(R.string.default_show_icons))
);
}
/**
* Show colors to highlight special events?
*
* @return
*/
public boolean showColors()
{
return preferences.getBoolean(
resources.getString(R.string.key_show_colors),
Boolean.parseBoolean(resources.getString(R.string.default_show_colors))
);
}
2010-09-09 14:41:55 -04:00
/**
* Show colors to highlight nicknames?
*
* @return
*/
public boolean showColorsNick()
{
return preferences.getBoolean(
resources.getString(R.string.key_show_colors_nick),
Boolean.parseBoolean(resources.getString(R.string.default_show_colors_nick))
);
}
/**
* Use 24 hour format for timestamps?
*
* @return
*/
public boolean use24hFormat()
{
return preferences.getBoolean(
resources.getString(R.string.key_24h_format),
Boolean.parseBoolean(resources.getString(R.string.default_24h_format))
);
}
2010-04-17 16:56:51 -04:00
/**
* Is reconnect on disconnect enabled?
*
* @return
*/
public boolean isReconnectEnabled()
{
return preferences.getBoolean(
resources.getString(R.string.key_reconnect),
Boolean.parseBoolean(resources.getString(R.string.default_reconnect))
);
}
/**
* Get the quit message
*
* @return The message to display when the user disconnects
*/
public String getQuitMessage()
{
return preferences.getString(
resources.getString(R.string.key_quitmessage),
resources.getString(R.string.default_quitmessage)
);
}
/**
* Get the font size
*
* @return The font size for conversation messages
*/
public int getFontSize()
{
return Integer.parseInt(preferences.getString(
resources.getString(R.string.key_fontsize),
resources.getString(R.string.default_fontsize)
));
}
/**
* Is voice recognition enabled?
*
* @return True if voice recognition is enabled, false otherwise
*/
public boolean isVoiceRecognitionEnabled()
{
return preferences.getBoolean(
resources.getString(R.string.key_voice_recognition),
Boolean.parseBoolean(resources.getString(R.string.default_voice_recognition))
);
}
2010-03-13 13:56:42 -05:00
}