# Entone progress bar attritube file # Progress bar # 1. Main window support rectangular progress bar # - The length of progress bar changes based on the progress input from fifo PRG_BAR(N).fifo # 2. Sub window text support for showing current progress in text format # - The content of text(progress number) changes based on the progress input from fifo PRG_BAR(N).fifo # 3. Sub window img support for showing different img with different progress input # - The attributes of img(FILENAME) changes based on the progress input from fifo PRG_BAR(N).fifo ###################################################### # PRG_BAR1: Reserved progress bar for boot process # PRG_BAR2: Reserved progress bar for upgrade process ###################################################### ##### Progress bar for boot process # Main window PRG_BAR1_X=0 PRG_BAR1_Y=0 PRG_BAR1_W=0 PRG_BAR1_H=0 PRG_BAR1_FG_COLOR="0x00 0x00 0x00 0x00" PRG_BAR1_BG_COLOR="0x00 0x00 0x00 0x00" ##### Progress bar for upgrade process # Main window PRG_BAR2_X=0 PRG_BAR2_Y=0 PRG_BAR2_W=0 PRG_BAR2_H=0 PRG_BAR2_FG_COLOR="0x00 0x00 0x00 0x00" PRG_BAR2_BG_COLOR="0x00 0x00 0x00 0x00" ##### Progress bar for HDD upgrade # Main window - Rectangle bar PRG_BAR3_X=350 PRG_BAR3_Y=560 PRG_BAR3_W=600 PRG_BAR3_H=10 PRG_BAR3_FG_COLOR="0xFF 0xFF 0xFF 0xFF" PRG_BAR3_BG_COLOR="0x4D 0x4D 0x4D 0xFF" # Sub window - Text PRG_BAR3_TEXT="$PROGRESS %" PRG_BAR3_TEXT_ATTR=PRG_BAR3_TEXT PRG_BAR3_TEXT_X=950 PRG_BAR3_TEXT_Y=555 PRG_BAR3_TEXT_W=80 PRG_BAR3_TEXT_H=20 PRG_BAR3_TEXT_ALIGN=CENTER PRG_BAR3_TEXT_OFFSET=0 PRG_BAR3_TEXT_BG_COLOR="0x00 0x00 0x00 0xFF" PRG_BAR3_TEXT_FONT=/usr/share/fonts/VeraBd.ttf PRG_BAR3_TEXT_SIZE=20 PRG_BAR3_TEXT_COLOR="0xFF 0xFF 0xFF 0xFF" PRG_BAR3_TEXT_OPACITY=255