|
|
|
@ -17,7 +17,7 @@ skin.version = "1.0"
|
|
|
|
|
|
|
|
|
|
local smallfont = love.graphics.newFont(10)
|
|
|
|
|
local imagebuttonfont = love.graphics.newFont(15)
|
|
|
|
|
local bordercolor = {143, 143, 143, 255}
|
|
|
|
|
local bordercolor = {143/255, 143/255, 143/255, 255/255}
|
|
|
|
|
|
|
|
|
|
-- add skin directives to this table
|
|
|
|
|
skin.directives = {}
|
|
|
|
@ -26,138 +26,138 @@ skin.directives = {}
|
|
|
|
|
skin.controls = {}
|
|
|
|
|
|
|
|
|
|
-- frame
|
|
|
|
|
skin.controls.frame_body_color = {232, 232, 232, 255}
|
|
|
|
|
skin.controls.frame_name_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.frame_body_color = {232/255, 232/255, 232/255, 255/255}
|
|
|
|
|
skin.controls.frame_name_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.frame_name_font = smallfont
|
|
|
|
|
|
|
|
|
|
-- button
|
|
|
|
|
skin.controls.button_text_down_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.button_text_nohover_color = {0, 0, 0, 200}
|
|
|
|
|
skin.controls.button_text_hover_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.button_text_nonclickable_color = {0, 0, 0, 100}
|
|
|
|
|
skin.controls.button_text_down_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.button_text_nohover_color = {0, 0, 0, 200/255}
|
|
|
|
|
skin.controls.button_text_hover_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.button_text_nonclickable_color = {0, 0, 0, 100/255}
|
|
|
|
|
skin.controls.button_text_font = smallfont
|
|
|
|
|
|
|
|
|
|
-- imagebutton
|
|
|
|
|
skin.controls.imagebutton_text_down_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.imagebutton_text_nohover_color = {255, 255, 255, 200}
|
|
|
|
|
skin.controls.imagebutton_text_hover_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.imagebutton_text_down_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.imagebutton_text_nohover_color = {255/255, 255/255, 255/255, 200/255}
|
|
|
|
|
skin.controls.imagebutton_text_hover_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.imagebutton_text_font = imagebuttonfont
|
|
|
|
|
|
|
|
|
|
-- closebutton
|
|
|
|
|
skin.controls.closebutton_body_down_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.closebutton_body_nohover_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.closebutton_body_hover_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.closebutton_body_down_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.closebutton_body_nohover_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.closebutton_body_hover_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
|
|
|
|
|
-- progressbar
|
|
|
|
|
skin.controls.progressbar_body_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.progressbar_text_color = {0, 0, 0, 255}
|
|
|
|
|
skin.controls.progressbar_body_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.progressbar_text_color = {0, 0, 0, 255/255}
|
|
|
|
|
skin.controls.progressbar_text_font = smallfont
|
|
|
|
|
|
|
|
|
|
-- list
|
|
|
|
|
skin.controls.list_body_color = {232, 232, 232, 255}
|
|
|
|
|
skin.controls.list_body_color = {232/255, 232/255, 232/255, 255/255}
|
|
|
|
|
|
|
|
|
|
-- scrollarea
|
|
|
|
|
skin.controls.scrollarea_body_color = {220, 220, 220, 255}
|
|
|
|
|
skin.controls.scrollarea_body_color = {220/255, 220/255, 220/255, 255/255}
|
|
|
|
|
|
|
|
|
|
-- scrollbody
|
|
|
|
|
skin.controls.scrollbody_body_color = {0, 0, 0, 0}
|
|
|
|
|
|
|
|
|
|
-- panel
|
|
|
|
|
skin.controls.panel_body_color = {232, 232, 232, 255}
|
|
|
|
|
skin.controls.panel_body_color = {232/255, 232/255, 232/255, 255/255}
|
|
|
|
|
|
|
|
|
|
-- tabpanel
|
|
|
|
|
skin.controls.tabpanel_body_color = {232, 232, 232, 255}
|
|
|
|
|
skin.controls.tabpanel_body_color = {232/255, 232/255, 232/255, 255/255}
|
|
|
|
|
|
|
|
|
|
-- tabbutton
|
|
|
|
|
skin.controls.tab_text_nohover_color = {0, 0, 0, 200}
|
|
|
|
|
skin.controls.tab_text_hover_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.tab_text_nohover_color = {0, 0, 0, 200/255}
|
|
|
|
|
skin.controls.tab_text_hover_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.tab_text_font = smallfont
|
|
|
|
|
|
|
|
|
|
-- multichoice
|
|
|
|
|
skin.controls.multichoice_body_color = {240, 240, 240, 255}
|
|
|
|
|
skin.controls.multichoice_text_color = {0, 0, 0, 255}
|
|
|
|
|
skin.controls.multichoice_body_color = {240/255, 240/255, 240/255, 255/255}
|
|
|
|
|
skin.controls.multichoice_text_color = {0, 0, 0, 255/255}
|
|
|
|
|
skin.controls.multichoice_text_font = smallfont
|
|
|
|
|
|
|
|
|
|
-- multichoicelist
|
|
|
|
|
skin.controls.multichoicelist_body_color = {240, 240, 240, 200}
|
|
|
|
|
skin.controls.multichoicelist_body_color = {240/255, 240/255, 240/255, 200/255}
|
|
|
|
|
|
|
|
|
|
-- multichoicerow
|
|
|
|
|
skin.controls.multichoicerow_body_nohover_color = {240, 240, 240, 255}
|
|
|
|
|
skin.controls.multichoicerow_body_hover_color = {51, 204, 255, 255}
|
|
|
|
|
skin.controls.multichoicerow_text_nohover_color = {0, 0, 0, 150}
|
|
|
|
|
skin.controls.multichoicerow_text_hover_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.multichoicerow_body_nohover_color = {240/255, 240/255, 240/255, 255/255}
|
|
|
|
|
skin.controls.multichoicerow_body_hover_color = {51/255, 204/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.multichoicerow_text_nohover_color = {0, 0, 0, 150/255}
|
|
|
|
|
skin.controls.multichoicerow_text_hover_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.multichoicerow_text_font = smallfont
|
|
|
|
|
|
|
|
|
|
-- tooltip
|
|
|
|
|
skin.controls.tooltip_body_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.tooltip_body_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
|
|
|
|
|
-- textinput
|
|
|
|
|
skin.controls.textinput_body_color = {250, 250, 250, 255}
|
|
|
|
|
skin.controls.textinput_indicator_color = {0, 0, 0, 255}
|
|
|
|
|
skin.controls.textinput_text_normal_color = {0, 0, 0, 255}
|
|
|
|
|
skin.controls.textinput_text_placeholder_color = {127, 127, 127, 255}
|
|
|
|
|
skin.controls.textinput_text_selected_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.textinput_highlight_bar_color = {51, 204, 255, 255}
|
|
|
|
|
skin.controls.textinput_body_color = {250/255, 250/255, 250/255, 255/255}
|
|
|
|
|
skin.controls.textinput_indicator_color = {0, 0, 0, 255/255}
|
|
|
|
|
skin.controls.textinput_text_normal_color = {0, 0, 0, 255/255}
|
|
|
|
|
skin.controls.textinput_text_placeholder_color = {127/255, 127/255, 127/255, 255/255}
|
|
|
|
|
skin.controls.textinput_text_selected_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.textinput_highlight_bar_color = {51/255, 204/255, 255/255, 255/255}
|
|
|
|
|
|
|
|
|
|
-- slider
|
|
|
|
|
skin.controls.slider_bar_outline_color = {220, 220, 220, 255}
|
|
|
|
|
skin.controls.slider_bar_outline_color = {220/255, 220/255, 220/255, 255/255}
|
|
|
|
|
|
|
|
|
|
-- checkbox
|
|
|
|
|
skin.controls.checkbox_body_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.checkbox_check_color = {128, 204, 255, 255}
|
|
|
|
|
skin.controls.checkbox_body_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.checkbox_check_color = {128/255, 204/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.checkbox_text_font = smallfont
|
|
|
|
|
|
|
|
|
|
-- radiobutton
|
|
|
|
|
skin.controls.radiobutton_body_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.radiobutton_check_color = {128, 204, 255, 255}
|
|
|
|
|
skin.controls.radiobutton_inner_border_color = {77, 184, 255, 255}
|
|
|
|
|
skin.controls.radiobutton_body_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.radiobutton_check_color = {128/255, 204/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.radiobutton_inner_border_color = {77/255, 184/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.radiobutton_text_font = smallfont
|
|
|
|
|
|
|
|
|
|
-- collapsiblecategory
|
|
|
|
|
skin.controls.collapsiblecategory_text_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.collapsiblecategory_text_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
|
|
|
|
|
-- columnlist
|
|
|
|
|
skin.controls.columnlist_body_color = {232, 232, 232, 255}
|
|
|
|
|
skin.controls.columnlist_body_color = {232/255, 232/255, 232/255, 255/255}
|
|
|
|
|
|
|
|
|
|
-- columlistarea
|
|
|
|
|
skin.controls.columnlistarea_body_color = {232, 232, 232, 255}
|
|
|
|
|
skin.controls.columnlistarea_body_color = {232/255, 232/255, 232/255, 255/255}
|
|
|
|
|
|
|
|
|
|
-- columnlistheader
|
|
|
|
|
skin.controls.columnlistheader_text_down_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.columnlistheader_text_nohover_color = {0, 0, 0, 200}
|
|
|
|
|
skin.controls.columnlistheader_text_hover_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.columnlistheader_text_down_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.columnlistheader_text_nohover_color = {0, 0, 0, 200/255}
|
|
|
|
|
skin.controls.columnlistheader_text_hover_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.columnlistheader_text_font = smallfont
|
|
|
|
|
|
|
|
|
|
-- columnlistrow
|
|
|
|
|
skin.controls.columnlistrow_body1_color = {245, 245, 245, 255}
|
|
|
|
|
skin.controls.columnlistrow_body2_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.columnlistrow_body_selected_color = {26, 198, 255, 255}
|
|
|
|
|
skin.controls.columnlistrow_body_hover_color = {102, 217, 255, 255}
|
|
|
|
|
skin.controls.columnlistrow_text_color = {100, 100, 100, 255}
|
|
|
|
|
skin.controls.columnlistrow_text_hover_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.columnlistrow_text_selected_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.columnlistrow_body1_color = {245/255, 245/255, 245/255, 255/255}
|
|
|
|
|
skin.controls.columnlistrow_body2_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.columnlistrow_body_selected_color = {26/255, 198/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.columnlistrow_body_hover_color = {102/255, 217/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.columnlistrow_text_color = {100/255, 100/255, 100/255, 255/255}
|
|
|
|
|
skin.controls.columnlistrow_text_hover_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.columnlistrow_text_selected_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
|
|
|
|
|
-- modalbackground
|
|
|
|
|
skin.controls.modalbackground_body_color = {255, 255, 255, 100}
|
|
|
|
|
skin.controls.modalbackground_body_color = {255/255, 255/255, 255/255, 100/255}
|
|
|
|
|
|
|
|
|
|
-- linenumberspanel
|
|
|
|
|
skin.controls.linenumberspanel_text_color = {170, 170, 170, 255}
|
|
|
|
|
skin.controls.linenumberspanel_body_color = {235, 235, 235, 255}
|
|
|
|
|
skin.controls.linenumberspanel_text_color = {170/255, 170/255, 170/255, 255/255}
|
|
|
|
|
skin.controls.linenumberspanel_body_color = {235/255, 235/255, 235/255, 255/255}
|
|
|
|
|
|
|
|
|
|
-- grid
|
|
|
|
|
skin.controls.grid_body_color = {230, 230, 230, 255}
|
|
|
|
|
skin.controls.grid_body_color = {230/255, 230/255, 230/255, 255/255}
|
|
|
|
|
|
|
|
|
|
-- form
|
|
|
|
|
skin.controls.form_text_color = {0, 0, 0, 255}
|
|
|
|
|
skin.controls.form_text_color = {0, 0, 0, 255/255}
|
|
|
|
|
skin.controls.form_text_font = smallfont
|
|
|
|
|
|
|
|
|
|
-- menu
|
|
|
|
|
skin.controls.menu_body_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.menu_body_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
|
|
|
|
|
-- menuoption
|
|
|
|
|
skin.controls.menuoption_body_hover_color = {51, 204, 255, 255}
|
|
|
|
|
skin.controls.menuoption_text_hover_color = {255, 255, 255, 255}
|
|
|
|
|
skin.controls.menuoption_text_color = {180, 180, 180, 255}
|
|
|
|
|
skin.controls.menuoption_body_hover_color = {51/255, 204/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.menuoption_text_hover_color = {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
skin.controls.menuoption_text_color = {180/255, 180/255, 180/255, 255/255}
|
|
|
|
|
|
|
|
|
|
local function ParseHeaderText(str, hx, hwidth, tx)
|
|
|
|
|
|
|
|
|
@ -262,11 +262,11 @@ function skin.DrawFrame(object)
|
|
|
|
|
local bodyimage_scaley = height/bodyimage_height
|
|
|
|
|
|
|
|
|
|
-- frame body
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(bodyimage, x, y, 0, bodyimage_scalex, bodyimage_scaley)
|
|
|
|
|
|
|
|
|
|
-- frame top bar
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(topbarimage, x, y, 0, topbarimage_scalex, topbarimage_scaley)
|
|
|
|
|
|
|
|
|
|
-- frame name section
|
|
|
|
@ -276,7 +276,7 @@ function skin.DrawFrame(object)
|
|
|
|
|
local iconwidth = icon:getWidth()
|
|
|
|
|
local iconheight = icon:getHeight()
|
|
|
|
|
icon:setFilter("nearest", "nearest")
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(icon, x + 5, y + 5)
|
|
|
|
|
love.graphics.setColor(namecolor)
|
|
|
|
|
love.graphics.print(name, x + iconwidth + 10, y + 5)
|
|
|
|
@ -289,10 +289,10 @@ function skin.DrawFrame(object)
|
|
|
|
|
love.graphics.setColor(bordercolor)
|
|
|
|
|
skin.OutlinedRectangle(x, y, width, height)
|
|
|
|
|
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 70)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 70/255)
|
|
|
|
|
skin.OutlinedRectangle(x + 1, y + 1, width - 2, 24)
|
|
|
|
|
|
|
|
|
|
love.graphics.setColor(220, 220, 220, 255)
|
|
|
|
|
love.graphics.setColor(220/255, 220/255, 220/255, 255/255)
|
|
|
|
|
skin.OutlinedRectangle(x + 1, y + 25, width - 2, height - 26)
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
@ -326,7 +326,7 @@ function skin.DrawButton(object)
|
|
|
|
|
|
|
|
|
|
if not enabled or not clickable then
|
|
|
|
|
-- button body
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(skin.images["button-unclickable.png"], x, y, 0, width, scaley)
|
|
|
|
|
-- button text
|
|
|
|
|
love.graphics.setFont(font)
|
|
|
|
@ -342,7 +342,7 @@ function skin.DrawButton(object)
|
|
|
|
|
if hover then
|
|
|
|
|
if down then
|
|
|
|
|
-- button body
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(skin.images["button-down.png"], x, y, 0, width, scaley)
|
|
|
|
|
-- button text
|
|
|
|
|
love.graphics.setFont(font)
|
|
|
|
@ -353,7 +353,7 @@ function skin.DrawButton(object)
|
|
|
|
|
skin.OutlinedRectangle(x, y, width, height)
|
|
|
|
|
else
|
|
|
|
|
-- button body
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image_hover, x, y, 0, width, scaley)
|
|
|
|
|
-- button text
|
|
|
|
|
love.graphics.setFont(font)
|
|
|
|
@ -366,7 +366,7 @@ function skin.DrawButton(object)
|
|
|
|
|
else
|
|
|
|
|
if object.toggle then
|
|
|
|
|
-- button body
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(skin.images["button-down.png"], x, y, 0, width, scaley)
|
|
|
|
|
-- button text
|
|
|
|
|
love.graphics.setFont(font)
|
|
|
|
@ -377,7 +377,7 @@ function skin.DrawButton(object)
|
|
|
|
|
skin.OutlinedRectangle(x, y, width, height)
|
|
|
|
|
else
|
|
|
|
|
-- button body
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(skin.images["button-nohover.png"], x, y, 0, width, scaley)
|
|
|
|
|
-- button text
|
|
|
|
|
love.graphics.setFont(font)
|
|
|
|
@ -391,12 +391,12 @@ function skin.DrawButton(object)
|
|
|
|
|
else
|
|
|
|
|
if down or checked then
|
|
|
|
|
-- button body
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(skin.images["button-down.png"], x, y, 0, width, scaley)
|
|
|
|
|
-- button text
|
|
|
|
|
love.graphics.setFont(font)
|
|
|
|
|
if object.image then
|
|
|
|
|
love.graphics.setColor(255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(object.image, x + 2, y + height/2 - object.image:getHeight()/2)
|
|
|
|
|
love.graphics.setColor(textdowncolor)
|
|
|
|
|
local text = object.text
|
|
|
|
@ -415,12 +415,12 @@ function skin.DrawButton(object)
|
|
|
|
|
skin.OutlinedRectangle(x, y, width, height)
|
|
|
|
|
elseif hover then
|
|
|
|
|
-- button body
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image_hover, x, y, 0, width, scaley)
|
|
|
|
|
-- button text
|
|
|
|
|
love.graphics.setFont(font)
|
|
|
|
|
if object.image then
|
|
|
|
|
love.graphics.setColor(255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(object.image, x + 2, y + height/2 - object.image:getHeight()/2)
|
|
|
|
|
love.graphics.setColor(texthovercolor)
|
|
|
|
|
local text = object.text
|
|
|
|
@ -439,12 +439,12 @@ function skin.DrawButton(object)
|
|
|
|
|
skin.OutlinedRectangle(x, y, width, height)
|
|
|
|
|
else
|
|
|
|
|
-- button body
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(skin.images["button-nohover.png"], x, y, 0, width, scaley)
|
|
|
|
|
-- button text
|
|
|
|
|
love.graphics.setFont(font)
|
|
|
|
|
if object.image then
|
|
|
|
|
love.graphics.setColor(255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(object.image, object:GetX() + 2, object:GetY() + object:GetHeight()/2 - object.image:getHeight()/2)
|
|
|
|
|
love.graphics.setColor(textnohovercolor)
|
|
|
|
|
local text = object.text
|
|
|
|
@ -464,7 +464,7 @@ function skin.DrawButton(object)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 150)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 150/255)
|
|
|
|
|
skin.OutlinedRectangle(x + 1, y + 1, width - 2, height - 2)
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
@ -533,7 +533,7 @@ function skin.DrawImage(object)
|
|
|
|
|
love.graphics.setColor(color)
|
|
|
|
|
love.graphics.draw(image, x, y, orientation, scalex, scaley, offsetx, offsety, shearx, sheary)
|
|
|
|
|
else
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x, y, orientation, scalex, scaley, offsetx, offsety, shearx, sheary)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
@ -553,7 +553,7 @@ function skin.DrawImageButton(object)
|
|
|
|
|
local text = object:GetText()
|
|
|
|
|
local hover = object:GetHover()
|
|
|
|
|
local image = object:GetImage()
|
|
|
|
|
local imagecolor = object.imagecolor or {255, 255, 255, 255}
|
|
|
|
|
local imagecolor = object.imagecolor or {255/255, 255/255, 255/255, 255/255}
|
|
|
|
|
local down = object.down
|
|
|
|
|
local font = skin.controls.imagebutton_text_font
|
|
|
|
|
local twidth = font:getWidth(object.text)
|
|
|
|
@ -569,7 +569,7 @@ function skin.DrawImageButton(object)
|
|
|
|
|
love.graphics.draw(image, x + 1, y + 1)
|
|
|
|
|
end
|
|
|
|
|
love.graphics.setFont(font)
|
|
|
|
|
love.graphics.setColor(0, 0, 0, 255)
|
|
|
|
|
love.graphics.setColor(0, 0, 0, 255/255)
|
|
|
|
|
love.graphics.print(text, x + width/2 - twidth/2 + 1, y + height - theight - 5 + 1)
|
|
|
|
|
love.graphics.setColor(textdowncolor)
|
|
|
|
|
love.graphics.print(text, x + width/2 - twidth/2 + 1, y + height - theight - 6 + 1)
|
|
|
|
@ -579,7 +579,7 @@ function skin.DrawImageButton(object)
|
|
|
|
|
love.graphics.draw(image, x, y)
|
|
|
|
|
end
|
|
|
|
|
love.graphics.setFont(font)
|
|
|
|
|
love.graphics.setColor(0, 0, 0, 255)
|
|
|
|
|
love.graphics.setColor(0, 0, 0, 255/255)
|
|
|
|
|
love.graphics.print(text, x + width/2 - twidth/2, y + height - theight - 5)
|
|
|
|
|
love.graphics.setColor(texthovercolor)
|
|
|
|
|
love.graphics.print(text, x + width/2 - twidth/2, y + height - theight - 6)
|
|
|
|
@ -589,7 +589,7 @@ function skin.DrawImageButton(object)
|
|
|
|
|
love.graphics.draw(image, x, y)
|
|
|
|
|
end
|
|
|
|
|
love.graphics.setFont(font)
|
|
|
|
|
love.graphics.setColor(0, 0, 0, 255)
|
|
|
|
|
love.graphics.setColor(0, 0, 0, 255/255)
|
|
|
|
|
love.graphics.print(text, x + width/2 - twidth/2, y + height - theight - 5)
|
|
|
|
|
love.graphics.setColor(textnohovercolor)
|
|
|
|
|
love.graphics.print(text, x + width/2 - twidth/2, y + height - theight - 6)
|
|
|
|
@ -631,7 +631,7 @@ function skin.DrawProgressBar(object)
|
|
|
|
|
-- progress bar body
|
|
|
|
|
love.graphics.setColor(bodycolor)
|
|
|
|
|
love.graphics.rectangle("fill", x, y, width, height)
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x, y, 0, barwidth, scaley)
|
|
|
|
|
love.graphics.setFont(font)
|
|
|
|
|
love.graphics.setColor(textcolor)
|
|
|
|
@ -693,7 +693,7 @@ function skin.DrawScrollBar(object)
|
|
|
|
|
local image = skin.images["button-down.png"]
|
|
|
|
|
local imageheight = image:getHeight()
|
|
|
|
|
local scaley = height/imageheight
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x, y, 0, width, scaley)
|
|
|
|
|
love.graphics.setColor(bordercolor)
|
|
|
|
|
skin.OutlinedRectangle(x, y, width, height)
|
|
|
|
@ -701,7 +701,7 @@ function skin.DrawScrollBar(object)
|
|
|
|
|
local image = skin.images["button-hover.png"]
|
|
|
|
|
local imageheight = image:getHeight()
|
|
|
|
|
local scaley = height/imageheight
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x, y, 0, width, scaley)
|
|
|
|
|
love.graphics.setColor(bordercolor)
|
|
|
|
|
skin.OutlinedRectangle(x, y, width, height)
|
|
|
|
@ -709,7 +709,7 @@ function skin.DrawScrollBar(object)
|
|
|
|
|
local image = skin.images["button-nohover.png"]
|
|
|
|
|
local imageheight = image:getHeight()
|
|
|
|
|
local scaley = height/imageheight
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x, y, 0, width, scaley)
|
|
|
|
|
love.graphics.setColor(bordercolor)
|
|
|
|
|
skin.OutlinedRectangle(x, y, width, height)
|
|
|
|
@ -751,7 +751,7 @@ function skin.DrawPanel(object)
|
|
|
|
|
love.graphics.setColor(bodycolor)
|
|
|
|
|
love.graphics.rectangle("fill", x, y, width, height)
|
|
|
|
|
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 200)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 200/255)
|
|
|
|
|
skin.OutlinedRectangle(x + 1, y + 1, width - 2, height - 2)
|
|
|
|
|
|
|
|
|
|
love.graphics.setColor(bordercolor)
|
|
|
|
@ -872,14 +872,14 @@ function skin.DrawTabButton(object)
|
|
|
|
|
local gradient = skin.images["button-hover.png"]
|
|
|
|
|
local gradientheight = gradient:getHeight()
|
|
|
|
|
local scaley = height/gradientheight
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(gradient, x, y, 0, width, scaley)
|
|
|
|
|
-- button border
|
|
|
|
|
love.graphics.setColor(bordercolor)
|
|
|
|
|
skin.OutlinedRectangle(x, y, width, height)
|
|
|
|
|
if image then
|
|
|
|
|
-- button image
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x + 5, y + height/2 - imageheight/2)
|
|
|
|
|
-- button text
|
|
|
|
|
love.graphics.setFont(font)
|
|
|
|
@ -896,14 +896,14 @@ function skin.DrawTabButton(object)
|
|
|
|
|
local gradient = skin.images["button-nohover.png"]
|
|
|
|
|
local gradientheight = gradient:getHeight()
|
|
|
|
|
local scaley = height/gradientheight
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(gradient, x, y, 0, width, scaley)
|
|
|
|
|
-- button border
|
|
|
|
|
love.graphics.setColor(bordercolor)
|
|
|
|
|
skin.OutlinedRectangle(x, y, width, height)
|
|
|
|
|
if image then
|
|
|
|
|
-- button image
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 150)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 150/255)
|
|
|
|
|
love.graphics.draw(image, x + 5, y + height/2 - imageheight/2)
|
|
|
|
|
-- button text
|
|
|
|
|
love.graphics.setFont(font)
|
|
|
|
@ -952,7 +952,7 @@ function skin.DrawMultiChoice(object)
|
|
|
|
|
love.graphics.print(choice, x + 5, y + height/2 - theight/2)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x + width - 20, y + 5)
|
|
|
|
|
|
|
|
|
|
love.graphics.setColor(bordercolor)
|
|
|
|
@ -1211,7 +1211,7 @@ function skin.DrawTextInput(object)
|
|
|
|
|
love.graphics.print(#str > 0 and str or placeholder, textx, texty)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
love.graphics.setColor(230, 230, 230, 255)
|
|
|
|
|
love.graphics.setColor(230/255, 230/255, 230/255, 255/255)
|
|
|
|
|
skin.OutlinedRectangle(x + 1, y + 1, width - 2, height - 2)
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
@ -1256,7 +1256,7 @@ function skin.DrawScrollButton(object)
|
|
|
|
|
local image = skin.images["button-down.png"]
|
|
|
|
|
local imageheight = image:getHeight()
|
|
|
|
|
local scaley = height/imageheight
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x, y, 0, width, scaley)
|
|
|
|
|
-- button border
|
|
|
|
|
love.graphics.setColor(bordercolor)
|
|
|
|
@ -1267,7 +1267,7 @@ function skin.DrawScrollButton(object)
|
|
|
|
|
local image = skin.images["button-hover.png"]
|
|
|
|
|
local imageheight = image:getHeight()
|
|
|
|
|
local scaley = height/imageheight
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x, y, 0, width, scaley)
|
|
|
|
|
-- button border
|
|
|
|
|
love.graphics.setColor(bordercolor)
|
|
|
|
@ -1277,7 +1277,7 @@ function skin.DrawScrollButton(object)
|
|
|
|
|
local image = skin.images["button-nohover.png"]
|
|
|
|
|
local imageheight = image:getHeight()
|
|
|
|
|
local scaley = height/imageheight
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x, y, 0, width, scaley)
|
|
|
|
|
-- button border
|
|
|
|
|
love.graphics.setColor(bordercolor)
|
|
|
|
@ -1290,9 +1290,9 @@ function skin.DrawScrollButton(object)
|
|
|
|
|
local imageheight = image:getHeight()
|
|
|
|
|
image:setFilter("nearest", "nearest")
|
|
|
|
|
if hover then
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
else
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 150)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 150/255)
|
|
|
|
|
end
|
|
|
|
|
love.graphics.draw(image, x + width/2 - imagewidth/2, y + height/2 - imageheight/2)
|
|
|
|
|
elseif scrolltype == "down" then
|
|
|
|
@ -1301,9 +1301,9 @@ function skin.DrawScrollButton(object)
|
|
|
|
|
local imageheight = image:getHeight()
|
|
|
|
|
image:setFilter("nearest", "nearest")
|
|
|
|
|
if hover then
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
else
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 150)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 150/255)
|
|
|
|
|
end
|
|
|
|
|
love.graphics.draw(image, x + width/2 - imagewidth/2, y + height/2 - imageheight/2)
|
|
|
|
|
elseif scrolltype == "left" then
|
|
|
|
@ -1312,9 +1312,9 @@ function skin.DrawScrollButton(object)
|
|
|
|
|
local imageheight = image:getHeight()
|
|
|
|
|
image:setFilter("nearest", "nearest")
|
|
|
|
|
if hover then
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
else
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 150)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 150/255)
|
|
|
|
|
end
|
|
|
|
|
love.graphics.draw(image, x + width/2 - imagewidth/2, y + height/2 - imageheight/2)
|
|
|
|
|
elseif scrolltype == "right" then
|
|
|
|
@ -1323,9 +1323,9 @@ function skin.DrawScrollButton(object)
|
|
|
|
|
local imageheight = image:getHeight()
|
|
|
|
|
image:setFilter("nearest", "nearest")
|
|
|
|
|
if hover then
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
else
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 150)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 150/255)
|
|
|
|
|
end
|
|
|
|
|
love.graphics.draw(image, x + width/2 - imagewidth/2, y + height/2 - imageheight/2)
|
|
|
|
|
end
|
|
|
|
@ -1384,7 +1384,7 @@ function skin.DrawSliderButton(object)
|
|
|
|
|
local imageheight = image:getHeight()
|
|
|
|
|
local scaley = height/imageheight
|
|
|
|
|
-- button body
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x, y, 0, width, scaley)
|
|
|
|
|
-- button border
|
|
|
|
|
love.graphics.setColor(bordercolor)
|
|
|
|
@ -1397,7 +1397,7 @@ function skin.DrawSliderButton(object)
|
|
|
|
|
local image = skin.images["button-down.png"]
|
|
|
|
|
local imageheight = image:getHeight()
|
|
|
|
|
local scaley = height/imageheight
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x, y, 0, width, scaley)
|
|
|
|
|
-- button border
|
|
|
|
|
love.graphics.setColor(bordercolor)
|
|
|
|
@ -1407,7 +1407,7 @@ function skin.DrawSliderButton(object)
|
|
|
|
|
local image = skin.images["button-hover.png"]
|
|
|
|
|
local imageheight = image:getHeight()
|
|
|
|
|
local scaley = height/imageheight
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x, y, 0, width, scaley)
|
|
|
|
|
-- button border
|
|
|
|
|
love.graphics.setColor(bordercolor)
|
|
|
|
@ -1417,7 +1417,7 @@ function skin.DrawSliderButton(object)
|
|
|
|
|
local image = skin.images["button-nohover.png"]
|
|
|
|
|
local imageheight = image:getHeight()
|
|
|
|
|
local scaley = height/imageheight
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x, y, 0, width, scaley)
|
|
|
|
|
-- button border
|
|
|
|
|
love.graphics.setColor(bordercolor)
|
|
|
|
@ -1520,27 +1520,27 @@ function skin.DrawCollapsibleCategory(object)
|
|
|
|
|
local imageheight = image:getHeight()
|
|
|
|
|
local scaley = height/imageheight
|
|
|
|
|
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x, y, 0, width, scaley)
|
|
|
|
|
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(topbarimage, x, y, 0, topbarimage_scalex, topbarimage_scaley)
|
|
|
|
|
|
|
|
|
|
love.graphics.setColor(bordercolor)
|
|
|
|
|
skin.OutlinedRectangle(x, y, width, height)
|
|
|
|
|
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
if open then
|
|
|
|
|
local icon = skin.images["collapse.png"]
|
|
|
|
|
icon:setFilter("nearest", "nearest")
|
|
|
|
|
love.graphics.draw(icon, x + width - 21, y + 5)
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 70)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 70/255)
|
|
|
|
|
skin.OutlinedRectangle(x + 1, y + 1, width - 2, 24)
|
|
|
|
|
else
|
|
|
|
|
local icon = skin.images["expand.png"]
|
|
|
|
|
icon:setFilter("nearest", "nearest")
|
|
|
|
|
love.graphics.draw(icon, x + width - 21, y + 5)
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 70)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 70/255)
|
|
|
|
|
skin.OutlinedRectangle(x + 1, y + 1, width - 2, 23)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
@ -1598,7 +1598,7 @@ function skin.DrawColumnListHeader(object)
|
|
|
|
|
local imageheight = image:getHeight()
|
|
|
|
|
local scaley = height/imageheight
|
|
|
|
|
-- header body
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x, y, 0, width, scaley)
|
|
|
|
|
-- header name
|
|
|
|
|
love.graphics.setFont(font)
|
|
|
|
@ -1612,7 +1612,7 @@ function skin.DrawColumnListHeader(object)
|
|
|
|
|
local imageheight = image:getHeight()
|
|
|
|
|
local scaley = height/imageheight
|
|
|
|
|
-- header body
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x, y, 0, width, scaley)
|
|
|
|
|
-- header name
|
|
|
|
|
love.graphics.setFont(font)
|
|
|
|
@ -1626,7 +1626,7 @@ function skin.DrawColumnListHeader(object)
|
|
|
|
|
local imageheight = image:getHeight()
|
|
|
|
|
local scaley = height/imageheight
|
|
|
|
|
-- header body
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x, y, 0, width, scaley)
|
|
|
|
|
-- header name
|
|
|
|
|
love.graphics.setFont(font)
|
|
|
|
@ -1665,7 +1665,7 @@ function skin.DrawColumnListArea(object)
|
|
|
|
|
local scaley = cheight/image:getHeight()
|
|
|
|
|
|
|
|
|
|
-- header body
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, x, y, 0, width, scaley)
|
|
|
|
|
|
|
|
|
|
love.graphics.setColor(bordercolor)
|
|
|
|
@ -1941,7 +1941,7 @@ function skin.DrawMenuOption(object)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if option_type == "divider" then
|
|
|
|
|
love.graphics.setColor(200, 200, 200, 255)
|
|
|
|
|
love.graphics.setColor(200/255, 200/255, 200/255, 255/255)
|
|
|
|
|
love.graphics.rectangle("fill", x + 4, y + 2, width - 8, 1)
|
|
|
|
|
object.contentheight = 10
|
|
|
|
|
else
|
|
|
|
@ -1956,7 +1956,7 @@ function skin.DrawMenuOption(object)
|
|
|
|
|
love.graphics.print(text, x + 26, y + 5)
|
|
|
|
|
end
|
|
|
|
|
if icon then
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(icon, x + 5, y + 5)
|
|
|
|
|
end
|
|
|
|
|
object.contentwidth = twidth + 31
|
|
|
|
@ -1973,7 +1973,7 @@ function skin.DrawTree(object)
|
|
|
|
|
local width = object:GetWidth()
|
|
|
|
|
local height = object:GetHeight()
|
|
|
|
|
|
|
|
|
|
love.graphics.setColor(200, 200, 200, 255)
|
|
|
|
|
love.graphics.setColor(200/255, 200/255, 200/255, 255/255)
|
|
|
|
|
love.graphics.rectangle("fill", x, y, width, height)
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
@ -2001,15 +2001,15 @@ function skin.DrawTreeNode(object)
|
|
|
|
|
local theight = loveframes.basicfont:getHeight(object.text)
|
|
|
|
|
|
|
|
|
|
if object.tree.selectednode == object then
|
|
|
|
|
love.graphics.setColor(102, 140, 255, 255)
|
|
|
|
|
love.graphics.setColor(102/255, 140/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.rectangle("fill", x + leftpadding + 2 + iconwidth, object.y + 2, twidth, theight)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
width = width + iconwidth + loveframes.basicfont:getWidth(object.text) + leftpadding
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(icon, x + leftpadding, object.y)
|
|
|
|
|
love.graphics.setFont(loveframes.basicfont)
|
|
|
|
|
love.graphics.setColor(0, 0, 0, 255)
|
|
|
|
|
love.graphics.setColor(0, 0, 0, 255/255)
|
|
|
|
|
love.graphics.print(object.text, x + leftpadding + 2 + iconwidth, object.y + 2)
|
|
|
|
|
|
|
|
|
|
object:SetWidth(width + 5)
|
|
|
|
@ -2029,7 +2029,7 @@ function skin.DrawTreeNodeButton(object)
|
|
|
|
|
|
|
|
|
|
image:setFilter("nearest", "nearest")
|
|
|
|
|
|
|
|
|
|
love.graphics.setColor(255, 255, 255, 255)
|
|
|
|
|
love.graphics.setColor(255/255, 255/255, 255/255, 255/255)
|
|
|
|
|
love.graphics.draw(image, object.x, object.y)
|
|
|
|
|
|
|
|
|
|
object:SetPos(2 + leftpadding, 3)
|
|
|
|
|