/*
* Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
*
* This file is part of FileExplorer.
*
* FileExplorer 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.
*
* FileExplorer 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 SwiFTP. If not, see <http://www.gnu.org/licenses/>.
*/
package net.micode.fileexplorer;
public abstract class GlobalConsts {
public static final String KEY_BASE_SD = "key_base_sd";
public static final String KEY_SHOW_CATEGORY = "key_show_category";
public static final String INTENT_EXTRA_TAB = "TAB";
public static final String ROOT_PATH = "/";
public static final String SDCARD_PATH = ROOT_PATH + "sdcard";
// Menu id
public static final int MENU_NEW_FOLDER = 100;
public static final int MENU_FAVORITE = 101;
public static final int MENU_COPY = 104;
public static final int MENU_PASTE = 105;
public static final int MENU_MOVE = 106;
public static final int MENU_SHOWHIDE = 117;
public static final int MENU_COPY_PATH = 118;
public static final int OPERATION_UP_LEVEL = 3;
}