Jump to content

Dear CURA developers - can you please make the following change?


ataraxis

Recommended Posts

Posted · Dear CURA developers - can you please make the following change?

Is it maybe possible to create a new param for CURA-plugins,

called "none", "description" or whatever, that does NOT create the standard text box - that would be very useful for readability and so on...

It would be just 2-3 lines new code at pluginPanel.py ;)

edit: see here (post #5) for an example and code:

http://umforum.ultimaker.com/index.php?/topic/10177-dear-cura-developers-can-you-please-make-the-following-change/&do=findComment&comment=98753

 

  • Link to post
    Share on other sites

    Posted · Dear CURA developers - can you please make the following change?

    That's axactly right, I already changed it here at my local copy of Cura, but if I use it now in my plugin nobody else can do. A breakline like '<br \>' would be nice also. Anyway with a label i can just use '---------------' if necessary.

     

  • Link to post
    Share on other sites

    Posted · Dear CURA developers - can you please make the following change?

    Luck for what? That they implement it you mean?

    It's really not a big deal... I hope they do it.

    damn1 0.1 curaplugincode 2

    Not the very best solution but a good one without too much effort:

    change no. 1 at pluginPanel.py:

    replace line 112:

     


    s.Add(wx.StaticText(pluginPanel, -1, param['description']), pos=(3+i,0), span=(1,2), flag=wx.LEFT|wx.RIGHT|wx.ALIGN_CENTER_VERTICAL,border=3)

    with

     


    if param['description'] == '---' and param['type'] == 'none':
    s.Add(wx.StaticLine(pluginPanel), pos=(3+i,0), span=(1,4), flag=wx.EXPAND|wx.LEFT|wx.RIGHT,border=3)
    elif param['description'].startswith('b_'):
    ctrl = wx.StaticText(pluginPanel, -1, (param['description'])[2:])
    tmp = ctrl.GetFont()
    tmp.SetWeight(wx.BOLD)
    ctrl.SetFont(tmp)
    s.Add(ctrl, pos=(3+i,0), span=(1,2), flag=wx.LEFT|wx.RIGHT|wx.ALIGN_CENTER_VERTICAL,border=3)
    elif param['description'].startswith('m_'):
    s.Add(wx.StaticText(pluginPanel, -1, ((param['description']).replace(r'\n','\n'))[2:]), pos=(3+i,0), span=(1,2), flag=wx.LEFT|wx.RIGHT|wx.ALIGN_CENTER_VERTICAL,border=3)
    pass
    else:
    s.Add(wx.StaticText(pluginPanel, -1, param['description']), pos=(3+i,0), span=(1,2), flag=wx.LEFT|wx.RIGHT|wx.ALIGN_CENTER_VERTICAL,border=3)

    change no. 2 at pluginPanel.py:

    insert before line 123

     


    else: #standard text box

    the following

     

     


    elif param['type'].lower() == 'none':
    pass

    Then you can print with params...

    ... an empty second colum by type:'none'

    ... a line by description:'---' and type:'none'

    ... a bold text by 'b_' before the description

    ... use \n as newline by 'm_' before the description

     

  • Link to post
    Share on other sites

    Posted · Dear CURA developers - can you please make the following change?

    Do the plugins run properly like that? No problems in pluginInfo.py?

     

  • Link to post
    Share on other sites

    Posted · Dear CURA developers - can you please make the following change?

    @Dim3nsioneer: everything is fine so far ;)

     

     

    You should clone the source code from https://github.com/daid/Cura

    using git, make your edits and submit them as pull request. That way your edits can be automatically merged with the existing code, if the code is up to standard.

     

    well, my solution is really quick and not sophisticated.

    if you can tell me that you will definitely include it when it is ready, then I will invest more time in a better way for the formatting options, ... (and use github)

     

  • Link to post
    Share on other sites

    Posted · Dear CURA developers - can you please make the following change?

    hey again, you are right dimensioneer, the update-process doesn't work anymore... but as I said... will wait for bagels answer

     

  • Link to post
    Share on other sites

    Posted · Dear CURA developers - can you please make the following change?

    I found an other way to modify the pluginbox within the plugin, thank you anyway

     

  • Link to post
    Share on other sites

    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now
    • Our picks

      • UltiMaker Cura 5.7 stable released
        Cura 5.7 is here and it brings a handy new workflow improvement when using Thingiverse and Cura together, as well as additional capabilities for Method series printers, and a powerful way of sharing print settings using new printer-agnostic project files! Read on to find out about all of these improvements and more. 
         
          • Like
        • 16 replies
      • S-Line Firmware 8.3.0 was released Nov. 20th on the "Latest" firmware branch.
        (Sorry, was out of office when this released)

        This update is for...
        All UltiMaker S series  
        New features
         
        Temperature status. During print preparation, the temperatures of the print cores and build plate will be shown on the display. This gives a better indication of the progress and remaining wait time. Save log files in paused state. It is now possible to save the printer's log files to USB if the currently active print job is paused. Previously, the Dump logs to USB option was only enabled if the printer was in idle state. Confirm print removal via Digital Factory. If the printer is connected to the Digital Factory, it is now possible to confirm the removal of a previous print job via the Digital Factory interface. This is useful in situations where the build plate is clear, but the operator forgot to select Confirm removal on the printer’s display. Visit this page for more information about this feature.
          • Like
        • 0 replies
    ×
    ×
    • Create New...